Construction.fromJson constructor

Construction.fromJson(
  1. dynamic json
)

Implementation

Construction.fromJson(dynamic json) {
  _title = json['title'];
  _description = json['description'];
  _progressPercent = json['progress_percent'];
  _tagLine = json['tag_line'];
  _constructionDate = json['construction_date'];
}