toHlsManifestDurationFormat method
Implementation
HlsManifestDurationFormat toHlsManifestDurationFormat() {
switch (this) {
case 'FLOATING_POINT':
return HlsManifestDurationFormat.floatingPoint;
case 'INTEGER':
return HlsManifestDurationFormat.integer;
}
throw Exception('$this is not known in enum HlsManifestDurationFormat');
}