Coin constructor

Coin({
  1. dynamic value,
  2. int? qty,
  3. required int amount,
})

Implementation

Coin({
  this.value,
  this.qty,
  required this.amount,
});