toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case BurnInShadowColor.black:
      return 'BLACK';
    case BurnInShadowColor.none:
      return 'NONE';
    case BurnInShadowColor.white:
      return 'WHITE';
  }
}