ADAStakeAccountWithdrawalHistoryResponse.fromJson constructor

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

Implementation

factory ADAStakeAccountWithdrawalHistoryResponse.fromJson(
    Map<String, dynamic> json) {
  return ADAStakeAccountWithdrawalHistoryResponse(
    txHash: json['tx_hash'],
    amount: json['amount'],
  );
}