AppTheme.fromJson constructor

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

Implementation

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