toDvbSubDestinationShadowColor method

DvbSubDestinationShadowColor toDvbSubDestinationShadowColor()

Implementation

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