DataPayments constructor

DataPayments({
  1. String? commerceCode,
  2. String? deviceId,
  3. bool? mobile,
  4. required int amount,
  5. required String order,
  6. String? subject,
  7. String? contact,
  8. int? method,
  9. List<Map<String, dynamic>>? items,
})

Implementation

DataPayments(
    {this.commerceCode,
    this.deviceId,
    this.mobile,
    required this.amount,
    required this.order,
    this.subject,
    this.contact,
    this.method,
    this.items});