VerticalFeedItemCommentComponent.fromJson constructor
Implementation
factory VerticalFeedItemCommentComponent.fromJson(Map<String, dynamic> json) {
return VerticalFeedItemCommentComponent(
type: json['type'],
id: json['id'],
customPayload: json['customPayload'],
text: json['text'],
);
}