removeHook method

void removeHook(
  1. String id
)

Implementation

void removeHook(String id) {
  _hooks.removeWhere((e) => e.id == id);
}