onDeleteHandler method

Future<bool> onDeleteHandler()

Implementation

Future<bool> onDeleteHandler() async {
  // fire the onchange event
  bool ok = true;
  if (_onDelete != null) {
    ok = await EventHandler(this).execute(_onDelete);
  }
  return ok;
}