shouldEscapeSingleQuotes method

bool shouldEscapeSingleQuotes(
  1. String value
)

Implementation

bool shouldEscapeSingleQuotes(String value) {
  return value.contains("'");
}