nullableInDart property

bool nullableInDart

Whether this type is nullable in Dart

Implementation

bool get nullableInDart {
  return (nullable && !isArray) || typeConverter?.hasNullableDartType == true;
}