FetchAccessTokenResponse constructor

FetchAccessTokenResponse({
  1. ExchangeError? exchangeError,
  2. String? expirationTime,
  3. List<String>? scopes,
  4. String? token,
})

Implementation

FetchAccessTokenResponse({
  this.exchangeError,
  this.expirationTime,
  this.scopes,
  this.token,
});