normalizeQuotes method
Replaces all double quote characters with U+0022, and single quote characters with +U0027
Implementation
String normalizeQuotes() => replaceAll(RegExp('$_rSingleQuotes+'), "'")
.replaceAll(RegExp('$_rDoubleQuotes+'), '"');