toExportFormat method
Implementation
ExportFormat toExportFormat() {
switch (this) {
case 'DYNAMODB_JSON':
return ExportFormat.dynamodbJson;
case 'ION':
return ExportFormat.ion;
}
throw Exception('$this is not known in enum ExportFormat');
}