dynamicValue function

UntypedJsonNode dynamicValue(
  1. {required String key,
  2. dynamic data}
)

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);