AuthCustomTokenExchangeOptions constructor

const AuthCustomTokenExchangeOptions({
  1. required String subjectToken,
  2. required String subjectTokenType,
  3. String? audience,
  4. Set<String> scopes = const {},
  5. String? organization,
})

Implementation

const AuthCustomTokenExchangeOptions({
  required this.subjectToken,
  required this.subjectTokenType,
  this.audience,
  this.scopes = const {},
  this.organization,
});