StoryProductCardComponent.fromJson constructor
Implementation
factory StoryProductCardComponent.fromJson(Map<String, dynamic> json) {
return StoryProductCardComponent(
type: json['type'],
id: json['id'],
customPayload: json['customPayload'],
text: json['text'],
actionUrl: json['actionUrl'],
products: List<STRProductItem>.from(
json['products'].map((x) => STRProductItem.fromJson(x))),
);
}