toTargetLabel method
Implementation
TargetLabel toTargetLabel() {
switch (this) {
case 'Blue':
return TargetLabel.blue;
case 'Green':
return TargetLabel.green;
}
throw Exception('$this is not known in enum TargetLabel');
}
TargetLabel toTargetLabel() {
switch (this) {
case 'Blue':
return TargetLabel.blue;
case 'Green':
return TargetLabel.green;
}
throw Exception('$this is not known in enum TargetLabel');
}