copyWith method

Implementation

WebApiModulesInventoryInventoryApplyPendingRateUpdateModificationsResponse
copyWith({
  int? status,
  bool? success,
  String? msg,
  WebApiModulesUtilitiesRateUpdateBatchRateUpdateBatch? rateUpdateBatch,
}) {
  return WebApiModulesInventoryInventoryApplyPendingRateUpdateModificationsResponse(
    status: status ?? this.status,
    success: success ?? this.success,
    msg: msg ?? this.msg,
    rateUpdateBatch: rateUpdateBatch ?? this.rateUpdateBatch,
  );
}