PaywayMerchant constructor
PaywayMerchant({})
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,
});