toDvbSubtitleBackgroundColor method
Implementation
DvbSubtitleBackgroundColor toDvbSubtitleBackgroundColor() {
switch (this) {
case 'NONE':
return DvbSubtitleBackgroundColor.none;
case 'BLACK':
return DvbSubtitleBackgroundColor.black;
case 'WHITE':
return DvbSubtitleBackgroundColor.white;
}
throw Exception('$this is not known in enum DvbSubtitleBackgroundColor');
}