unregistered method
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 ?? '')));
}