TransactionChain.fromJson constructor Null safety
Implementation
factory TransactionChain.fromJson(Map<String, dynamic> json) =>
TransactionChain(
address: json['address'],
data: TransactionChainData.fromJson(json['data']),
type: json['type'],
);