toContactListImportAction method
Implementation
ContactListImportAction toContactListImportAction() {
switch (this) {
case 'DELETE':
return ContactListImportAction.delete;
case 'PUT':
return ContactListImportAction.put;
}
throw Exception('$this is not known in enum ContactListImportAction');
}