OAuth2 constructor

OAuth2({
  1. String? clientId,
  2. String? clientSecret,
  3. String? clientSecretSha256,
})

Implementation

OAuth2({
  this.clientId,
  this.clientSecret,
  this.clientSecretSha256,
});