LokotroPaymentMethodListItem constructor

LokotroPaymentMethodListItem({
  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. bool isSelected = false,
  8. Map<String, dynamic>? configuration,
})

Implementation

LokotroPaymentMethodListItem({
  required this.id,
  required this.name,
  required this.displayName,
  required this.channel,
  required this.iconUrl,
  this.isEnabled = true,
  this.isSelected = false,
  this.configuration,
});