toValue method

String toValue()

Implementation

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