standardNullableTypes top-level constant ast

Map<String, StandardType> const standardNullableTypes

Map of all standard nullable types.

{@category ast}

Implementation

const standardNullableTypes = {
  "int": NullableIntType(),
  "double": NullableDoubleType(),
  "bool": NullableBooleanType(),
  "String": NullableStringType(),
  "Uint8List": NullableUint8ListType(),
  "Int32List": NullableInt32ListType(),
  "Int64List": NullableInt64ListType(),
  "Float32List": NullableFloat32ListType(),
  "Float64List": NullableFloat64ListType(),
};