OAuthAccount constructor

OAuthAccount(
  1. String? identifier, {
  2. String? idToken,
  3. String? token,
  4. String? tokenType,
  5. String? refreshToken,
  6. int? expiresIn,
  7. DateTime? created,
  8. List<String>? scope,
  9. Map<String, String> userData = const {},
})

Implementation

OAuthAccount(String? identifier,
    {this.idToken,
    this.token,
    this.tokenType,
    this.refreshToken,
    this.expiresIn,
    this.created,
    List<String>? scope,
    Map<String, String> userData = const {}})
    : super(identifier, userData: userData) {
  if (scope != null) {
    this.scope = scope;
  }
}