removeQuotes method

String removeQuotes()

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), '');