copyWith method
Implementation
Data copyWith({ List<Source>? source,
List<SubSource>? subSource,
List<Budget>? budget,
List<Priority>? priority,
List<Area>? area,
List<Category>? category,
List<LeadType>? leadType,
List<UnitType>? unitType,
List<UnitType>? buyType,
}) => Data( source: source ?? _source,
subSource: subSource ?? _subSource,
budget: budget ?? _budget,
priority: priority ?? _priority,
area: area ?? _area,
category: category ?? _category,
leadType: leadType ?? _leadType,
unitType: unitType ?? _unitType,
buyType: buyType ?? _buyType,
);