static Map jsonDecodeMapOrNull(S json) {
  json = trim(json);
  ret empty(json) ? null : jsonDecodeMap(json);
}