copyWith method
Implementation
ConstructionData2 copyWith({ String? constructionId,
String? title,
String? description,
String? tagLine,
String? progressPercent,
String? constructionDate,
}) => ConstructionData2( constructionId: constructionId ?? _constructionId,
title: title ?? _title,
description: description ?? _description,
tagLine: tagLine ?? _tagLine,
progressPercent: progressPercent ?? _progressPercent,
constructionDate: constructionDate ?? _constructionDate,
);