Auth constructor

Auth({
  1. required int expiresIn,
  2. required String tokenType,
  3. required String accessToken,
})

Implementation

Auth({
  required this.expiresIn,
  required this.tokenType,
  required this.accessToken,
});