AccessTokenModel constructor

AccessTokenModel({
  1. required String access_token,
  2. required String token_type,
  3. required int expires_in,
})

Implementation

AccessTokenModel({
  required this.access_token,
  required this.token_type,
  required this.expires_in,
});