unregistered method

void unregistered({
  1. dynamic response,
  2. String? cause,
})

Unregistered

Implementation

void unregistered({dynamic response, String? cause}) {
  emit(EventUnregister(
      cause: ErrorCause(
          cause: cause ?? 'unregistered',
          status_code: response?.status_code ?? 0,
          reason_phrase: response?.reason_phrase ?? '')));
}