AutoReloadConfig constructor

AutoReloadConfig({
  1. required bool enabled,
  2. String? paymentMethodId,
  3. num? reloadAmount,
  4. num? reloadThreshold,
})

Implementation

AutoReloadConfig({
  required this.enabled,
  this.paymentMethodId,
  this.reloadAmount,
  this.reloadThreshold,
});