String escaped(String? value) => value == null ? 'null' : value.contains(r'$') ? "r'${replaceSpecials(value)}'" : "'${replaceSpecials(value)}'";