parse static method

String parse(
  1. String textValue
)
override

Parses the textValue

Implementation

static String parse(String textValue) {
  if (textValue.startsWith('"')) {
    return textValue.substring(1, textValue.length - 1);
  }

  return textValue;
}