getJMap method

JMap getJMap(
  1. String key
)

Gets a JMap that can be empty.

Implementation

JMap getJMap(String key) {
  // ignore: implicit_dynamic_map_literal
  return getJMapOrNull(key) ?? JMap({});
}