AuthorizationStateClosed constructor

const AuthorizationStateClosed(
  1. {dynamic extra,
  2. int? clientId}
)

TDLib client is in its final state. All databases are closed and all resources are released. No other updates will be received after this. All queries will be responded to. with error code 500. To continue working, one must create a new instance of the TDLib client

Implementation

const AuthorizationStateClosed({
  this.extra,
  this.clientId,
});