getJMap method

JMap getJMap(
  1. int idx
)

Gets a JMap that can be empty.

Implementation

JMap getJMap(int idx) {
  // ignore: implicit_dynamic_map_literal
  return getJMapOrNull(idx) ?? JMap({});
}