AuthModel constructor

AuthModel({
  1. bool isLinked = false,
  2. String? displayName,
  3. String? email,
  4. String? token,
  5. DateTime? accessTokenExp,
  6. String? refreshToken,
})

Implementation

AuthModel(
    {this.isLinked = false,
    this.displayName,
    this.email,
    this.token,
    this.accessTokenExp,
    this.refreshToken});