toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowPasswordUser = this.allowPasswordUser;
  final apiKey = this.apiKey;
  final authorizedDomains = this.authorizedDomains;
  final changeEmailTemplate = this.changeEmailTemplate;
  final delegatedProjectNumber = this.delegatedProjectNumber;
  final enableAnonymousUser = this.enableAnonymousUser;
  final idpConfig = this.idpConfig;
  final legacyResetPasswordTemplate = this.legacyResetPasswordTemplate;
  final resetPasswordTemplate = this.resetPasswordTemplate;
  final useEmailSending = this.useEmailSending;
  final verifyEmailTemplate = this.verifyEmailTemplate;
  return {
    'allowPasswordUser': ?allowPasswordUser,
    'apiKey': ?apiKey,
    'authorizedDomains': ?authorizedDomains,
    'changeEmailTemplate': ?changeEmailTemplate,
    'delegatedProjectNumber': ?delegatedProjectNumber,
    'enableAnonymousUser': ?enableAnonymousUser,
    'idpConfig': ?idpConfig,
    'legacyResetPasswordTemplate': ?legacyResetPasswordTemplate,
    'resetPasswordTemplate': ?resetPasswordTemplate,
    'useEmailSending': ?useEmailSending,
    'verifyEmailTemplate': ?verifyEmailTemplate,
  };
}