ApplePayOrder constructor

ApplePayOrder(
  1. {required List<ApplePayItem> items,
  2. required String merchantName,
  3. double? tax,
  4. double? tip}
)

Implementation

ApplePayOrder({
  required this.items,
  required this.merchantName,
  this.tax,
  this.tip,
});