copyWith method
WebApiModulesInventoryInventoryApplyPendingRateUpdateModificationsResponse
copyWith({
- int? status,
- bool? success,
- String? msg,
- WebApiModulesUtilitiesRateUpdateBatchRateUpdateBatch? rateUpdateBatch,
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);
}