VerticalFeedItemCommentComponent.fromJson constructor

VerticalFeedItemCommentComponent.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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