Construction constructor

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

Implementation

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