copyWith method
Implementation
Highlights copyWith({ num? projectId,
String? name,
String? tagLine,
String? imageFull,
String? image,
}) => Highlights( projectId: projectId ?? _projectId,
name: name ?? _name,
tagLine: tagLine ?? _tagLine,
imageFull: imageFull ?? _imageFull,
image: image ?? _image,
);