paymentCreate method Null safety

PaylikeRequestBuilder<PaylikeClientResponse> paymentCreate(
  1. {required Map<String, dynamic> payment,
  2. List<String> hints = const []}
)

Payment create calls the capture API with retry mechanism used

Implementation

PaylikeRequestBuilder<PaylikeClientResponse> paymentCreate({
  required Map<String, dynamic> payment,
  List<String> hints = const [],
}) {
  return PaylikeRequestBuilder(() => _paymentCreate(payment, hints, null));
}