MessageStatistics.fromJson constructor
Parse from a json
Implementation
factory MessageStatistics.fromJson(Map<String, dynamic> json) => MessageStatistics(
messageInteractionGraph: StatisticalGraph.fromJson(json['message_interaction_graph']),
extra: json['@extra'],
clientId: json['@client_id'],
);