ConstructionData2 constructor

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

Implementation

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