copyWith method

Highlights copyWith({
  1. num? projectId,
  2. String? name,
  3. String? tagLine,
  4. String? imageFull,
  5. String? image,
})

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,
);