ATHMovilPayment constructor

ATHMovilPayment({
  1. required String? businessToken,
  2. required String? callbackSchema,
  3. required double? total,
  4. required int? timeout,
  5. String? paymentId,
  6. double? tax,
  7. double? subtotal,
  8. String? metadata1,
  9. String? metadata2,
  10. List<ATHMovilItem>? items,
  11. String? phoneNumber,
})

Implementation

ATHMovilPayment({
  required this.businessToken,
  required this.callbackSchema,
  required this.total,
  required this.timeout,
  this.paymentId,
  this.tax,
  this.subtotal,
  this.metadata1,
  this.metadata2,
  this.items,
  this.phoneNumber,
});