MemoryHashSignature.fromJson constructor
MemoryHashSignature.fromJson(
- Map json_
Implementation
MemoryHashSignature.fromJson(core.Map json_)
: this(
binaryFamily: json_['binaryFamily'] as core.String?,
detections: (json_['detections'] as core.List?)
?.map((value) => Detection.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);