toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (audience != null) 'audience': audience!,
  if (grantType != null) 'grantType': grantType!,
  if (options != null) 'options': options!,
  if (requestedTokenType != null) 'requestedTokenType': requestedTokenType!,
  if (scope != null) 'scope': scope!,
  if (subjectToken != null) 'subjectToken': subjectToken!,
  if (subjectTokenType != null) 'subjectTokenType': subjectTokenType!,
};