payWithBill method

Convenience method for bill (boleto) payments (one-step flow).

Delegates directly to CheckoutsService.createCheckout. The gateway is not involved — the response will contain a CheckoutResponse.bill payload.

Implementation

Future<ValueResult<CheckoutResponse>> payWithBill(
  CheckoutRequest request,
) async {
  return _checkoutService.createCheckout(request);
}