unregisterCallResult method

void unregisterCallResult({
  1. required CallResult<NativeType> callResult,
})
inherited

Unregister the CallResult from the Dispatcher

Implementation

void unregisterCallResult({
  required CallResult callResult,
}) =>
    _dispatcher.unregisterCallResult(
      callResult: callResult,
    );