AiutaImageIcons.fromJson constructor
Implementation
factory AiutaImageIcons.fromJson(Map<String, dynamic> json) {
switch (json['type'] as String) {
case 'builtIn':
return AiutaImageIconsBuiltIn.fromJson(json);
case 'custom':
return AiutaImageIconsCustom.fromJson(json);
default:
throw Exception('Unknown image icons type');
}
}