Token constructor

Token({
  1. required String accessToken,
  2. required int expiresIn,
  3. String? scope,
  4. required String tokenType,
  5. String? refreshToken,
})

Implementation

Token(
    {required this.accessToken,
    required this.expiresIn,
    this.scope,
    required this.tokenType,
    this.refreshToken});