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