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