toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final customerId = this.customerId;
  final entityId = this.entityId;
  final profileId = this.profileId;
  final type = this.type;
  final userEmail = this.userEmail;
  return {
    'customerId': ?customerId,
    'entityId': ?entityId,
    'profileId': ?profileId,
    'type': ?type,
    'userEmail': ?userEmail,
  };
}