ADATransactionDelegationCertificateResponse.fromJson constructor

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

Implementation

factory ADATransactionDelegationCertificateResponse.fromJson(
    Map<String, dynamic> json) {
  return ADATransactionDelegationCertificateResponse(
    certIndex: json['cert_index'],
    address: json['address'],
    poolId: json['pool_id'],
    activeEpoch: json['active_epoch'],
  );
}