toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ParameterApplyType.static:
      return 'static';
    case ParameterApplyType.dynamic:
      return 'dynamic';
  }
}