toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final appId = this.appId;
  final authFlowType = this.authFlowType;
  final clientId = this.clientId;
  final context = this.context;
  final continueUri = this.continueUri;
  final customParameter = this.customParameter;
  final hostedDomain = this.hostedDomain;
  final identifier = this.identifier;
  final oauthConsumerKey = this.oauthConsumerKey;
  final oauthScope = this.oauthScope;
  final openidRealm = this.openidRealm;
  final otaApp = this.otaApp;
  final providerId = this.providerId;
  final sessionId = this.sessionId;
  final tenantId = this.tenantId;
  final tenantProjectNumber = this.tenantProjectNumber;
  return {
    'appId': ?appId,
    'authFlowType': ?authFlowType,
    'clientId': ?clientId,
    'context': ?context,
    'continueUri': ?continueUri,
    'customParameter': ?customParameter,
    'hostedDomain': ?hostedDomain,
    'identifier': ?identifier,
    'oauthConsumerKey': ?oauthConsumerKey,
    'oauthScope': ?oauthScope,
    'openidRealm': ?openidRealm,
    'otaApp': ?otaApp,
    'providerId': ?providerId,
    'sessionId': ?sessionId,
    'tenantId': ?tenantId,
    'tenantProjectNumber': ?tenantProjectNumber,
  };
}