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