toScte35ArchiveAllowedFlag method
Implementation
Scte35ArchiveAllowedFlag toScte35ArchiveAllowedFlag() {
switch (this) {
case 'ARCHIVE_NOT_ALLOWED':
return Scte35ArchiveAllowedFlag.archiveNotAllowed;
case 'ARCHIVE_ALLOWED':
return Scte35ArchiveAllowedFlag.archiveAllowed;
}
throw Exception('$this is not known in enum Scte35ArchiveAllowedFlag');
}