dispatchDelete method

bool dispatchDelete(
  1. FluentDocument document, {
  2. bool ctrl = false,
})

Implementation

bool dispatchDelete(FluentDocument document, {bool ctrl = false}) {
  for (final plugin in plugins) {
    if (plugin.onDelete(document, ctrl: ctrl)) return true;
  }
  return false;
}