ADAStakeAccountResponse constructor

ADAStakeAccountResponse({
  1. required String stakeAddress,
  2. required bool active,
  3. int? activeEpoch,
  4. required String controlledAmount,
  5. required String rewardsSum,
  6. required String withdrawalsSum,
  7. required String reservesSum,
  8. required String treasurySum,
  9. required String withdrawableAmount,
  10. String? poolId,
})

Implementation

ADAStakeAccountResponse({
  required this.stakeAddress,
  required this.active,
  this.activeEpoch,
  required this.controlledAmount,
  required this.rewardsSum,
  required this.withdrawalsSum,
  required this.reservesSum,
  required this.treasurySum,
  required this.withdrawableAmount,
  this.poolId,
});