toDvbSubDestinationAlignment method
Implementation
DvbSubDestinationAlignment toDvbSubDestinationAlignment() {
switch (this) {
case 'CENTERED':
return DvbSubDestinationAlignment.centered;
case 'LEFT':
return DvbSubDestinationAlignment.left;
case 'SMART':
return DvbSubDestinationAlignment.smart;
}
throw Exception('$this is not known in enum DvbSubDestinationAlignment');
}