StandardSqlDataType class Null safety
The data type of a variable such as a function argument.
Examples include: * INT64: {"typeKind": "INT64"}
* ARRAY: { "typeKind":
"ARRAY", "arrayElementType": {"typeKind": "STRING"} } * STRUCT>: {
"typeKind": "STRUCT", "structType": { "fields": [ { "name": "x", "type":
{"typeKind": "STRING"} }, { "name": "y", "type": { "typeKind": "ARRAY",
"arrayElementType": {"typeKind": "DATE"} } } ] } }
Constructors
- StandardSqlDataType({StandardSqlDataType? arrayElementType, StandardSqlStructType? structType, String? typeKind})
- StandardSqlDataType.fromJson(Map json_)
Properties
- arrayElementType ↔ StandardSqlDataType?
-
The type of the array's elements, if type_kind = "ARRAY".
read / write
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
- structType ↔ StandardSqlStructType?
-
The fields of this struct, in order, if type_kind = "STRUCT".
read / write
- typeKind ↔ String?
-
The top level type of this field.
read / write
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited