toDvbSubDestinationOutlineColor method

DvbSubDestinationOutlineColor toDvbSubDestinationOutlineColor()

Implementation

DvbSubDestinationOutlineColor toDvbSubDestinationOutlineColor() {
  switch (this) {
    case 'BLACK':
      return DvbSubDestinationOutlineColor.black;
    case 'BLUE':
      return DvbSubDestinationOutlineColor.blue;
    case 'GREEN':
      return DvbSubDestinationOutlineColor.green;
    case 'RED':
      return DvbSubDestinationOutlineColor.red;
    case 'WHITE':
      return DvbSubDestinationOutlineColor.white;
    case 'YELLOW':
      return DvbSubDestinationOutlineColor.yellow;
  }
  throw Exception('$this is not known in enum DvbSubDestinationOutlineColor');
}