toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case CharLengthSemantics.$default:
      return 'default';
    case CharLengthSemantics.char:
      return 'char';
    case CharLengthSemantics.byte:
      return 'byte';
  }
}