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