PlayerBalance constructor

PlayerBalance({
  1. required double cash,
  2. required double coin,
  3. required String currency,
})

Implementation

PlayerBalance(
    {required this.cash, required this.coin, required this.currency});