TokenResponse constructor

TokenResponse({
  1. String? refresh_token,
  2. String? access_token,
  3. int? expires_in,
  4. String? idToken,
  5. int? x_refresh_token_expires_in,
})

Implementation

TokenResponse({this.refresh_token,
  this.access_token, this.expires_in,
  this.idToken, this.x_refresh_token_expires_in});