onEditPressed method
Implementation
void onEditPressed(BuildContext context) async {
if (options.onEditPressed != null) {
var close = await options.onEditPressed!(event);
if (close) Navigator.of(context).pop();
}
}
void onEditPressed(BuildContext context) async {
if (options.onEditPressed != null) {
var close = await options.onEditPressed!(event);
if (close) Navigator.of(context).pop();
}
}