SquarePosPaymentRequest constructor

SquarePosPaymentRequest({
  1. required SquarePosMoney money,
  2. String? userInfoString,
  3. String? locationID,
  4. String? notes,
  5. String? customerID,
  6. List<SquarePosTenderType>? supportedTenderTypes = SquarePosTenderType.values,
  7. bool returnsAutomaticallyAfterPayment = true,
})

Implementation

SquarePosPaymentRequest({
  required this.money,
  this.userInfoString,
  this.locationID,
  this.notes,
  this.customerID,
  this.supportedTenderTypes = SquarePosTenderType.values,
  this.returnsAutomaticallyAfterPayment = true,
});