OnDelete enum Null safety
types of on delete actions for foreign keys
Constructors
- OnDelete()
-
const
Values
- cascade → const OnDelete
-
delete the children when the foreign key is deleted
const OnDelete(0)
- restrict → const OnDelete
-
protect the children when the foreign key is deleted
const OnDelete(1)
- setNull → const OnDelete
-
set the children to null when the foreign key is deleted
const OnDelete(2)
- setDefault → const OnDelete
-
set the children to the default value when the foreign key is deleted
const OnDelete(3)
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