copyWith method

WebApiModulesAgentOrderItemSplitOrderItemResponse copyWith({
  1. int? status,
  2. bool? success,
  3. String? msg,
  4. String? orderItemId,
})

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,
  );
}