toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final addressInfo = this.addressInfo;
  final hashedEmail = this.hashedEmail;
  final hashedPhoneNumber = this.hashedPhoneNumber;
  return {
    'addressInfo': ?addressInfo,
    'hashedEmail': ?hashedEmail,
    'hashedPhoneNumber': ?hashedPhoneNumber,
  };
}