UpdateKind enum Null safety
Classifies a TableUpdate by what kind of write happened - an insert, an update or a delete operation.
Constants
- delete → const UpdateKind
-
A delete statement ran on the affected table.
const UpdateKind(2)
- insert → const UpdateKind
-
An insert statement ran on the affected table.
const UpdateKind(0)
- update → const UpdateKind
-
An update statement ran on the affected table.
const UpdateKind(1)
-
values
→ const List<
UpdateKind> -
A constant List of the values in this enum, in order of their declaration.
const List<
UpdateKind>
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