toDashIsoSegmentControl method
Implementation
DashIsoSegmentControl toDashIsoSegmentControl() {
switch (this) {
case 'SINGLE_FILE':
return DashIsoSegmentControl.singleFile;
case 'SEGMENTED_FILES':
return DashIsoSegmentControl.segmentedFiles;
}
throw Exception('$this is not known in enum DashIsoSegmentControl');
}