getStartPaymentGatewayURL method

String getStartPaymentGatewayURL(
  1. String? authority
)

Implementation

String getStartPaymentGatewayURL(String? authority) {
  return sprintf(paymentGatewayUrl, [
    isSandBox ? "sandbox." : "",
    authority,
    isZarinGateEnable ? "ZarinGate" : ""
  ]).toString().replaceAll(isSandBox ? "www." : "", "");
}