toValue method
Implementation
String toValue() {
switch (this) {
case Ownership.self:
return 'Self';
case Ownership.shared:
return 'Shared';
case Ownership.amazon:
return 'Amazon';
}
}
String toValue() {
switch (this) {
case Ownership.self:
return 'Self';
case Ownership.shared:
return 'Shared';
case Ownership.amazon:
return 'Amazon';
}
}