getJMapOrNull method

JMap? getJMapOrNull(
  1. int idx
)

Gets a nullable JMap.

Implementation

JMap? getJMapOrNull(int idx) {
  final obj = _get<Map<String, dynamic>>(idx);
  return obj == null ? null : JMap(obj);
}