PaymentParameter constructor
const
PaymentParameter({
- String? paymentCode,
- String? expiredDate,
- num? total,
- String? merchantId,
- String? merchantTranId,
- String? currencyCode,
- String? intAmount,
- String? custName,
- String? custEmail,
- String? returnUrl,
- String? paymentMethodStr,
- String? transactionTypeStr,
- String? signature,
- int? paymentMethodInt,
- int? transactionTypeInt,
- String? token,
- String? refNumber,
- String? orderId,
- String? customerName,
- String? customerPhone,
- String? customerEmail,
- String? description,
- String? pgProcessingId,
- String? transactionReference,
- String? orderCreated,
- String? orderExpired,
- num? status,
- String? signatureBluePay,
- String? transactionId,
- String? imageUrl,
- double? doubleAmount,
Implementation
const PaymentParameter({
String? paymentCode,
String? expiredDate,
num? total,
String? merchantId,
String? merchantTranId,
String? currencyCode,
String? intAmount,
String? custName,
String? custEmail,
String? returnUrl,
String? paymentMethodStr,
String? transactionTypeStr,
String? signature,
int? paymentMethodInt,
int? transactionTypeInt,
String? token,
String? refNumber,
String? orderId,
String? customerName,
String? customerPhone,
String? customerEmail,
String? description,
String? pgProcessingId,
String? transactionReference,
String? orderCreated,
String? orderExpired,
num? status,
String? signatureBluePay,
String? transactionId,
String? imageUrl,
double? doubleAmount,
}) : paymentCode = paymentCode ?? "",
expiredDate = expiredDate ?? "",
total = total ?? 0,
merchantId = merchantId ?? "",
merchantTranId = merchantTranId ?? "",
currencyCode = currencyCode ?? "",
intAmount = intAmount ?? "",
custName = custName ?? "",
custEmail = custEmail ?? "",
returnUrl = returnUrl ?? "",
paymentMethodStr = paymentMethodStr ?? "",
transactionTypeStr = transactionTypeStr ?? "",
signature = signature ?? "",
paymentMethodInt = paymentMethodInt ?? -1,
transactionTypeInt = transactionTypeInt ?? -1,
token = token ?? "",
refNumber = refNumber ?? "",
orderId = orderId ?? "",
customerName = customerName ?? "",
customerPhone = customerPhone ?? "",
customerEmail = customerEmail ?? "",
description = description ?? "",
pgProcessingId = pgProcessingId ?? "",
transactionReference = transactionReference ?? "",
orderCreated = orderCreated ?? "",
orderExpired = orderExpired ?? "",
status = status ?? 0,
signatureBluePay = signatureBluePay ?? "",
transactionId = transactionId ?? "",
imageUrl = imageUrl ?? "",
doubleAmount = doubleAmount ?? 0;