firstOrNull property

T? firstOrNull

Implementation

T? get firstOrNull {
  try {
    return first;
  } catch (_) {
    return null;
  }
}