LedgerSupply constructor

LedgerSupply({
  1. required int currentRound,
  2. required int onlineMoney,
  3. required int totalMoney,
})

Implementation

LedgerSupply({
  required this.currentRound,
  required this.onlineMoney,
  required this.totalMoney,
});