Data.fromJson constructor Null safety
Implementation
factory Data.fromJson(Map<String, dynamic> json) => Data(
content: json["content"],
code: json["code"],
keys: Keys.fromJson(json["keys"]),
ledger: Ledger.fromJson(json["ledger"]),
recipients: List<Uint8List>.from(json["recipients"].map((x) => x)),
);