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