first property

T? get first
inherited

Implementation

T? get first {
  return (list.isEmpty) ? null : list.first;
}