CustomerBalance constructor

CustomerBalance({
  1. double? balance,
  2. String? id,
  3. String? icon,
  4. bool? isSelected,
  5. MethodType? type,
})

Implementation

CustomerBalance({
  this.balance,
  this.id,
  this.icon,
  this.isSelected,
  this.type,
});