ColumnType enum Null safety
The column types in sql.
Constructors
- ColumnType()
-
const
Values
- integer → const ColumnType
-
const ColumnType(0)
- text → const ColumnType
-
const ColumnType(1)
- boolean → const ColumnType
-
const ColumnType(2)
- datetime → const ColumnType
-
const ColumnType(3)
- blob → const ColumnType
-
const ColumnType(4)
- real → const ColumnType
-
const ColumnType(5)
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
ColumnType> -
A constant List of the values in this enum, in order of their declaration.
[integer, text, boolean, datetime, blob, real]