LokotroPaymentFormData constructor

LokotroPaymentFormData({
  1. required String paymentMethodId,
  2. required LokotroPayChannel channel,
  3. required Map<String, dynamic> formData,
  4. DateTime? timestamp,
})

Implementation

LokotroPaymentFormData({
  required this.paymentMethodId,
  required this.channel,
  required this.formData,
  DateTime? timestamp,
}) : timestamp = timestamp ?? DateTime.now();