sqlIdentifier function

String sqlIdentifier(
  1. String name
)

Implementation

String sqlIdentifier(String name) {
  checkState(name.isNotEmpty);
  return quoteWithDoubleQuotes(name);
}