Construction.fromJson constructor
Construction.fromJson(
- 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'];
}