Wallet constructor

Wallet({
  1. bool? availableOnConsumer,
  2. double? holdBalance,
  3. String? id,
  4. String? holdCurrency,
  5. double? balance,
  6. String? currency,
  7. bool? primary,
  8. String? name,
  9. String? type,
  10. bool? active,
})

Implementation

Wallet({
  this.availableOnConsumer,
  this.holdBalance,
  this.id,
  this.holdCurrency,
  this.balance,
  this.currency,
  this.primary,
  this.name,
  this.type,
  this.active,
});