removeQuotes method
Removes all quote marks from the string, except where within a word or where it is a apostrophe preceded by n "s" or "S" (possessive plural).
Implementation
String removeQuotes() => replaceAll(RegExp(_rQuotes), '');
Removes all quote marks from the string, except where within a word or where it is a apostrophe preceded by n "s" or "S" (possessive plural).
String removeQuotes() => replaceAll(RegExp(_rQuotes), '');