TopupMethod constructor

TopupMethod({
  1. required String type,
  2. required String name,
  3. List<double>? amounts,
  4. List<double>? range,
})

Implementation

TopupMethod({
  required this.type,
  required this.name,
  this.amounts,
  this.range,
});