Quote a string with single quotes
static String? quote(String? str) { return str != null ? "'$str'" : null; }