hash property
String
get
hash
Implementation
String get hash {
assert(PaywayTransactionService.instance != null);
if (PaywayTransactionService.instance == null) {
throw Exception(
'Make sure run PaywayTransactionService.ensureInitialized()');
}
final merchant = PaywayTransactionService.instance!.merchant;
return ABAClientService(merchant).getHash(
reqTime: reqTime.toString(),
tranId: tranId.toString(),
amount: "",
items: "",
shipping: "",
firstName: "",
lastName: "",
email: "",
phone: "",
type: "",
paymentOption: "",
currency: "",
returnUrl: "",
);
}