toValue method
Implementation
String toValue() {
switch (this) {
case GrowthType.linear:
return 'LINEAR';
case GrowthType.exponential:
return 'EXPONENTIAL';
}
}
String toValue() {
switch (this) {
case GrowthType.linear:
return 'LINEAR';
case GrowthType.exponential:
return 'EXPONENTIAL';
}
}