toValue method

String toValue()

Implementation

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