LokotroPaymentMethod constructor

LokotroPaymentMethod({
  1. required String id,
  2. required String name,
  3. required String displayName,
  4. required LokotroPayChannel channel,
  5. required String iconUrl,
  6. bool isEnabled = true,
  7. Map<String, dynamic>? configuration,
  8. List<String>? supportedCurrencies,
})

Implementation

LokotroPaymentMethod({
  required this.id,
  required this.name,
  required this.displayName,
  required this.channel,
  required this.iconUrl,
  this.isEnabled = true,
  this.configuration,
  this.supportedCurrencies,
});