toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (allowPasswordUser != null) 'allowPasswordUser': allowPasswordUser!,
      if (apiKey != null) 'apiKey': apiKey!,
      if (authorizedDomains != null) 'authorizedDomains': authorizedDomains!,
      if (changeEmailTemplate != null)
        'changeEmailTemplate': changeEmailTemplate!,
      if (dynamicLinksDomain != null)
        'dynamicLinksDomain': dynamicLinksDomain!,
      if (enableAnonymousUser != null)
        'enableAnonymousUser': enableAnonymousUser!,
      if (idpConfig != null) 'idpConfig': idpConfig!,
      if (legacyResetPasswordTemplate != null)
        'legacyResetPasswordTemplate': legacyResetPasswordTemplate!,
      if (projectId != null) 'projectId': projectId!,
      if (resetPasswordTemplate != null)
        'resetPasswordTemplate': resetPasswordTemplate!,
      if (useEmailSending != null) 'useEmailSending': useEmailSending!,
      if (verifyEmailTemplate != null)
        'verifyEmailTemplate': verifyEmailTemplate!,
    };