toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (allowPasswordSignup != null)
        'allowPasswordSignup': allowPasswordSignup!,
      if (disableAuth != null) 'disableAuth': disableAuth!,
      if (displayName != null) 'displayName': displayName!,
      if (enableAnonymousUser != null)
        'enableAnonymousUser': enableAnonymousUser!,
      if (enableEmailLinkSignin != null)
        'enableEmailLinkSignin': enableEmailLinkSignin!,
      if (hashConfig != null) 'hashConfig': hashConfig!,
      if (inheritance != null) 'inheritance': inheritance!,
      if (mfaConfig != null) 'mfaConfig': mfaConfig!,
      if (name != null) 'name': name!,
      if (smsRegionConfig != null) 'smsRegionConfig': smsRegionConfig!,
      if (testPhoneNumbers != null) 'testPhoneNumbers': testPhoneNumbers!,
    };