fromJson static method
Implementation
static BusinessFeaturePromotionAnimation? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return BusinessFeaturePromotionAnimation(
feature: BusinessFeature.fromJson(tdMapFromJson(json['feature'])),
animation: Animation.fromJson(tdMapFromJson(json['animation'])),
);
}