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