ChatEventIsAllHistoryAvailableToggled.fromJson constructor

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

Parse from a json

Implementation

factory ChatEventIsAllHistoryAvailableToggled.fromJson(Map<String, dynamic> json) => ChatEventIsAllHistoryAvailableToggled(
  isAllHistoryAvailable: json['is_all_history_available'],
);