Token constructor

Token({
  1. required String accessToken,
  2. required String tokenType,
  3. required String scope,
  4. required DateTime createdAt,
})

Implementation

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