AppConfig.fromJson constructor
Implementation
AppConfig.fromJson(Map<String, dynamic> json) {
title = json['title'];
showPrintButton = json['showPrintButton'];
showShareButton = json['showShareButton'];
colors = json['colors'] != null ? Colors.fromJson(json['colors']) : null;
logo = json['logo'];
mobileLogo = json['mobileLogo'];
showEazeLogo = json['showEazeLogo'];
}