toSupportDataSetType method

SupportDataSetType toSupportDataSetType()

Implementation

SupportDataSetType toSupportDataSetType() {
  switch (this) {
    case 'customer_support_contacts_data':
      return SupportDataSetType.customerSupportContactsData;
    case 'test_customer_support_contacts_data':
      return SupportDataSetType.testCustomerSupportContactsData;
  }
  throw Exception('$this is not known in enum SupportDataSetType');
}