fromJson static method
Inherited by: BuiltInThemeArctic BuiltInThemeClassic BuiltInThemeDay BuiltInThemeNight BuiltInThemeTinted
Implementation
static BuiltInThemeTinted? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const BuiltInThemeTinted();
}