PayUOrder constructor

PayUOrder({
  1. required int posId,
  2. required String description,
  3. required String currencyCode,
  4. required PayUBuyer buyer,
  5. List<PayUProduct> products = const [],
})

Implementation

PayUOrder({
  required this.posId,
  required this.description,
  required this.currencyCode,
  required this.buyer,
  this.products = const [],
});