AllocationMemoryJson.decode constructor

AllocationMemoryJson.decode({
  1. required String argJsonString,
  2. Map<String, Object?>? argDecodedMap,
})

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