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