getFirst property

T? get getFirst

Implementation

T? get getFirst {
  if (isEmpty) {
    return null;
  } else {
    return first;
  }
}