BasicInfo.fromJson constructor

BasicInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

BasicInfo.fromJson(Map<String, dynamic> json) {
  title = json['title'];
  description = json['description'];
  privacy_notice_heading = json['privacy_notice_heading'];
  preference_center_heading = json['preference_center_heading'];
  dsr_center_heading = json['dsr_center_heading'];
}