createPayment method

Future<Payment> createPayment({
  1. required CreatePaymentRequest request,
  2. String? authToken,
})

Creates a payment using the provided source.

You can use this endpoint to charge a card (credit/debit card or Square gift card) or record a payment that the seller received outside of Square (cash payment from a buyer or a payment that an external entity processed on behalf of the seller).

Implementation

Future<Payment> createPayment({
  required CreatePaymentRequest request,
  String? authToken,
}) async {
  return _paymentService.createPayment(request: request, authToken: authToken);
}