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