toMpeg2ColorMetadata method
Implementation
Mpeg2ColorMetadata toMpeg2ColorMetadata() {
switch (this) {
case 'IGNORE':
return Mpeg2ColorMetadata.ignore;
case 'INSERT':
return Mpeg2ColorMetadata.insert;
}
throw Exception('$this is not known in enum Mpeg2ColorMetadata');
}