ADAStakeAccountDelegationHistoryResponse.fromJson constructor

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

Implementation

factory ADAStakeAccountDelegationHistoryResponse.fromJson(
    Map<String, dynamic> json) {
  return ADAStakeAccountDelegationHistoryResponse(
    activeEpoch: json['active_epoch'],
    txHash: json['tx_hash'],
    amount: json['amount'],
    poolId: json['pool_id'],
  );
}