PaywayMerchant constructor

PaywayMerchant({
  1. required String merchantID,
  2. required String merchantApiKey,
  3. required String merchantApiName,
  4. required String baseApiUrl,
  5. required String refererDomain,
})

PaywayMerchant

Represent and Hold Merchant Credential provided by aba bank supporter

Example

var merchant = PaywayMerchant(
  merchantID: "your_merchant_api",
  merchantApiKey: "your_api_key",
  merchantApiName: "your_merchant_name",
  baseApiUrl: "based_api_url", // without merchantApiName
  referedDomain: "", // whitelist domain
);

Implementation

PaywayMerchant({
  required this.merchantID,
  required this.merchantApiKey,
  required this.merchantApiName,
  required this.baseApiUrl,
  required this.refererDomain,
});