A standard Dart type being one of:
- IntType int
- NullableIntType int?
- DoubleType double
- NullableDoubleType double?
- StringType String
- NullableStringType String?
- BooleanType bool
- NullableBooleanType bool?
- ListType List
- NullableListType List?
- MapType Map
- NullableMapType Map?
- Uint8ListType Uint8List
- NullableUint8ListType Uint8List?
- Int32ListType Int32List
- Int32ListType Int32List?
- Int64ListType Int64List
- Int64ListType Int64List?
- Float32ListType Float32List
- NullableFloat32ListType Float32List?
- Float64ListType Float64List
- NullableFloat64ListType Float64List?
- Inheritance
-
- Object
- AbstractType
- StandardType
- Implementers
- Available extensions
Constructors
- StandardType({required String className})
-
Construct a new AbstractType.
const
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override