removeQuotes function

String removeQuotes(
  1. String input
)

Implementation

String removeQuotes(String input) {
  return input.replaceAll(RegExp(r"[']"), "").replaceAll(RegExp(r'["]'), "");
}