ReadProof.fromJson constructor
Implementation
factory ReadProof.fromJson(Map<String, dynamic> json) {
return ReadProof(
at: Uint8List.fromList(hex.decode((json['at'] as String).substring(2))),
proof: (json['proof'] as List)
.cast<String>()
.map((proof) => Uint8List.fromList(hex.decode(proof.substring(2))))
.toList(),
);
}