copyWith method
Implementation
WebApiModulesAgentOrderCompletePoWorksheetSessionResponse copyWith(
{String? purchaseOrderId, int? status, bool? success, String? msg}) {
return WebApiModulesAgentOrderCompletePoWorksheetSessionResponse(
purchaseOrderId: purchaseOrderId ?? this.purchaseOrderId,
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg);
}