GoogleTokenExchangerInputModel constructor

const GoogleTokenExchangerInputModel({
  1. String? clientId,
  2. required String clientSecret,
  3. required String redirectUri,
  4. String? codeVerifier,
  5. required String code,
  6. required String apiUrl,
  7. String? grantType,
})

Implementation

const GoogleTokenExchangerInputModel({
  this.clientId,
  required this.clientSecret,
  required this.redirectUri,
  this.codeVerifier,
  required this.code,
  required this.apiUrl,
  this.grantType,
});