OnDelete enum
types of on delete actions for foreign keys
Values
- cascade → const OnDelete
-
delete the children when the foreign key is deleted
- restrict → const OnDelete
-
protect the children when the foreign key is deleted
- setNull → const OnDelete
-
set the children to null when the foreign key is deleted
- setDefault → const OnDelete
-
set the children to the default value when the foreign key is deleted
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited