factory ThemeError.fromJson(Map<String, dynamic> json) { return ThemeError( message: json['Message'] as String?, type: (json['Type'] as String?)?.toThemeErrorType(), ); }