nullPointer<T> function

T nullPointer<T>(
  1. String? property
)

Implementation

T nullPointer<T>(String? property) =>
    throw ArgumentError.notNull(property ?? "Null found");