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