toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowDuplicateEmails = this.allowDuplicateEmails;
  final anonymous = this.anonymous;
  final email = this.email;
  final hashConfig = this.hashConfig;
  final phoneNumber = this.phoneNumber;
  return {
    'allowDuplicateEmails': ?allowDuplicateEmails,
    'anonymous': ?anonymous,
    'email': ?email,
    'hashConfig': ?hashConfig,
    'phoneNumber': ?phoneNumber,
  };
}