Returns true if s is a encoded JSON bool.
true
s
bool isEncodedJSONBoolean(String? s) { if (s == null) return false; s = s.trim(); return _isEncodedJSONBoolean(s); }