offDiagnostic method

void offDiagnostic({
  1. required DiagnosticHandler handler,
})
inherited

Implementation

void offDiagnostic({required handler}) {
  var subsription = h.diagntosticListenerHandlers.remove(handler);
  subsription?.cancel();
}