unregisterCallback method

void unregisterCallback({
  1. required Callback<NativeType> callback,
})
inherited

Unregister the Callback from the Dispatcher

Implementation

void unregisterCallback({
  required Callback callback,
}) =>
    _dispatcher.unregisterCallback(
      callback: callback,
    );