fromJson static method
Implementation
static TCICVirtualBackgroundImage fromJson(Map<String, dynamic> json) {
return TCICVirtualBackgroundImage(
imagePath: json['imagePath'] ?? json['bgUrl'] ?? '',
name: json['name'] ?? json['bgName'],
);
}