shouldUseSingleQuotes method

bool shouldUseSingleQuotes(
  1. String value
)

Implementation

bool shouldUseSingleQuotes(String value) {
  return value.contains("\"");
}