RefreshTokenOption constructor

RefreshTokenOption({
  1. required RefreshTokenMethod method,
  2. required Uri url,
  3. GetHeaders? getHeaders,
  4. GetBody? getBody,
  5. Encoding? encoding,
  6. required ConditionRequireRefreshToken condition,
  7. required RefreshTokenResponse onResponse,
})

Implementation

RefreshTokenOption({
  required this.method,
  required this.url,
  this.getHeaders,
  this.getBody,
  this.encoding,
  required this.condition,
  required this.onResponse,
});