TransactionChain.fromJson constructor Null safety

TransactionChain.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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