SuccessLogin constructor

SuccessLogin({
  1. String? accessToken,
  2. SuccessLoginCredentials? credentials,
  3. String? tokenType = 'Bearer',
})

Returns a new SuccessLogin instance.

Implementation

SuccessLogin({
  this.accessToken,
  this.credentials,
  this.tokenType = 'Bearer',
});