fromJson static method
Inherited by: BackgroundTypeChatTheme BackgroundTypeFill BackgroundTypePattern BackgroundTypeWallpaper
Implementation
static BackgroundTypeChatTheme? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return BackgroundTypeChatTheme(
themeName: (json['theme_name'] as String?) ?? '',
);
}