StarRevenueStatus constructor

StarRevenueStatus({
  1. StarAmount? totalAmount,
  2. StarAmount? currentAmount,
  3. StarAmount? availableAmount,
  4. required bool withdrawalEnabled,
  5. required int nextWithdrawalIn,
})

Implementation

StarRevenueStatus({
  this.totalAmount,
  this.currentAmount,
  this.availableAmount,
  required this.withdrawalEnabled,
  required this.nextWithdrawalIn,
});