tryFirst property

V? tryFirst

Implementation

V? get tryFirst {
  return (this == null)
      ? null
      : this!.isEmpty
          ? null
          : this!.first;
}