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