AppTheme.fromJson constructor
Implementation
factory AppTheme.fromJson(Map<String, dynamic> json) => AppTheme(
theme: json["theme"] ?? "light" ,
customTheme: json["customTheme"] == null ? null : MirrorFlyAppTheme.fromJson(json["customTheme"]),
);