quoteIdentifier function

String quoteIdentifier(
  1. String s
)

Implementation

String quoteIdentifier(String s) {
  return '"${s.replaceAll('"', '""')}"';
}