CreatePaymentResponse constructor
CreatePaymentResponse({})
Implementation
CreatePaymentResponse({
Status? status,
bool? success,
String? errorCode,
String? message,
String? details,
this.order,
this.id,
this.customParameters,
this.createDate,
this.updateDate,
this.expireDate,
this.paymentUrl,
this.statusDescription,
this.paymentMethod,
}) : super(
status: status,
success: success,
errorCode: errorCode,
message: message,
details: details,
);