/// <summary>
 /// Gets the row or default (null) if the IndexPath is out of Range.
 ///
 /// </summary>
 /// <param name="indexPath">The index path.</param>
 public IEZRow GetRowOrDefault(NSIndexPath indexPath)
 => indexPath.IsOutOfRange(EZSections) ? null : EZSections[indexPath.Section][indexPath.Row];