toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final audience = this.audience;
final grantType = this.grantType;
final options = this.options;
final requestedTokenType = this.requestedTokenType;
final scope = this.scope;
final subjectToken = this.subjectToken;
final subjectTokenType = this.subjectTokenType;
return {
'audience': ?audience,
'grantType': ?grantType,
'options': ?options,
'requestedTokenType': ?requestedTokenType,
'scope': ?scope,
'subjectToken': ?subjectToken,
'subjectTokenType': ?subjectTokenType,
};
}