dynamicValue function
JSON node of unknown type.
The data is stored as dynamic because the type can not be determined. Value is possibly null.
Implementation
UntypedJsonNode dynamicValue({
required String key,
dynamic data,
}) =>
UntypedJsonNode(key: key, data: data);