toHlsProgramDateTime method
Implementation
HlsProgramDateTime toHlsProgramDateTime() {
switch (this) {
case 'INCLUDE':
return HlsProgramDateTime.include;
case 'EXCLUDE':
return HlsProgramDateTime.exclude;
}
throw Exception('$this is not known in enum HlsProgramDateTime');
}