updateAuthorizationState property

UpdateAuthorizationState? updateAuthorizationState

The user authorization state has changed

Implementation

UpdateAuthorizationState? get updateAuthorizationState {
  if (this is UpdateAuthorizationState) {
    return this as UpdateAuthorizationState;
  }
  return null;
}