toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final contactListImportAction = this.contactListImportAction;
  final contactListName = this.contactListName;
  return {
    'ContactListImportAction': contactListImportAction.toValue(),
    'ContactListName': contactListName,
  };
}