toSuppressionListImportAction method

SuppressionListImportAction toSuppressionListImportAction()

Implementation

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