copyWith method

Construction copyWith({
  1. String? title,
  2. String? description,
  3. String? progressPercent,
  4. String? tagLine,
  5. String? constructionDate,
})

Implementation

Construction copyWith({  String? title,
  String? description,
  String? progressPercent,
  String? tagLine,
  String? constructionDate,
}) => Construction(  title: title ?? _title,
  description: description ?? _description,
  progressPercent: progressPercent ?? _progressPercent,
  tagLine: tagLine ?? _tagLine,
  constructionDate: constructionDate ?? _constructionDate,
);