TransactionChainResponse.fromJson constructor Null safety

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

Implementation

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