toValue method
Implementation
String toValue() {
switch (this) {
case HasLogicalRedundancy.unknown:
return 'unknown';
case HasLogicalRedundancy.yes:
return 'yes';
case HasLogicalRedundancy.no:
return 'no';
}
}
String toValue() {
switch (this) {
case HasLogicalRedundancy.unknown:
return 'unknown';
case HasLogicalRedundancy.yes:
return 'yes';
case HasLogicalRedundancy.no:
return 'no';
}
}