AllocationMemoryJson.decode constructor
AllocationMemoryJson.decode({})
Given a JSON string representing an array of HeapSample, decode to a list of HeapSample.
Implementation
AllocationMemoryJson.decode({
required String argJsonString,
Map<String, Object?>? argDecodedMap,
}) : super.decode(
_jsonAllocationPayloadField,
argJsonString: argJsonString,
argDecodedMap: argDecodedMap,
);