toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final emailOwner = this.emailOwner;
  final emailOwnerDeliveryType = this.emailOwnerDeliveryType;
  final message = this.message;
  final recipients = this.recipients;
  return {
    'emailOwner': ?emailOwner,
    'emailOwnerDeliveryType': ?emailOwnerDeliveryType,
    'message': ?message,
    'recipients': ?recipients,
  };
}