ChatRevenueAmount constructor

ChatRevenueAmount({
  1. required String cryptocurrency,
  2. required int totalAmount,
  3. required int balanceAmount,
  4. required int availableAmount,
  5. required bool withdrawalEnabled,
})

Implementation

ChatRevenueAmount({
  required this.cryptocurrency,
  required this.totalAmount,
  required this.balanceAmount,
  required this.availableAmount,
  required this.withdrawalEnabled,
});