close method
void
close([
- T? value
Closes the modal with an optional return value.
Implementation
void close([T? value]) {
Navigator.of(context).pop(value);
}
Closes the modal with an optional return value.
void close([T? value]) {
Navigator.of(context).pop(value);
}