removeQuotes static method

String removeQuotes(
  1. String value
)

Trims quotes (the first and the last character).

Implementation

static String removeQuotes(String value) =>
    value.substring(1, value.length - 1);