toDvbSubtitleTeletextSpacing method
Implementation
DvbSubtitleTeletextSpacing toDvbSubtitleTeletextSpacing() {
switch (this) {
case 'FIXED_GRID':
return DvbSubtitleTeletextSpacing.fixedGrid;
case 'PROPORTIONAL':
return DvbSubtitleTeletextSpacing.proportional;
}
throw Exception('$this is not known in enum DvbSubtitleTeletextSpacing');
}