copyWith method

Implementation

WebApiModulesWarehouseContractExceptionsResponse copyWith({
  List<WebApiModulesWarehouseContractExceptionItem>? exceptions,
}) {
  return WebApiModulesWarehouseContractExceptionsResponse(
    exceptions: exceptions ?? this.exceptions,
  );
}