copyWith method
Implementation
WebApiModulesAgentOrderChangeOrderStatusRequest copyWith(
{String? orderId, String? newStatus}) {
return WebApiModulesAgentOrderChangeOrderStatusRequest(
orderId: orderId ?? this.orderId,
newStatus: newStatus ?? this.newStatus);
}