RefreshResponse constructor

RefreshResponse({
  1. required String accessToken,
  2. int? expiresInMs,
  3. String? refreshToken,
})

Implementation

RefreshResponse({
  required this.accessToken,
  this.expiresInMs,
  this.refreshToken,
});