unregisterSessionResultListener method

void unregisterSessionResultListener(
  1. SessionResultCallback callback
)

Implementation

void unregisterSessionResultListener(
  SessionResultCallback callback,
) {
  if (_resultCallbacks.contains(callback)) {
    _resultCallbacks.remove(callback);
  }
}