JsonObjectOrNull.fromMap constructor
Construct a new JsonObjectOrNull using the specified key values of each JsonNode.
Implementation
factory JsonObjectOrNull.fromMap(
{Map<String, dynamic>? data, String key = ""}) =>
JsonObjectOrNull(
data: data?.map(_buildJsonNodeMap),
key: key,
);