MoosylPaymentMethodRenderData constructor

const MoosylPaymentMethodRenderData({
  1. required ConfigurationListDataInner method,
  2. required PaymentMethodTypes type,
  3. required String title,
  4. required bool isSelected,
  5. required String? selectedMethodId,
  6. required bool isRTL,
  7. required VoidCallback onSelect,
})

Creates render data for a payment method row.

Implementation

const MoosylPaymentMethodRenderData({
  required this.method,
  required this.type,
  required this.title,
  required this.isSelected,
  required this.selectedMethodId,
  required this.isRTL,
  required this.onSelect,
});