PageBlockChatLink.fromJson constructor
Parse from a json
Implementation
factory PageBlockChatLink.fromJson(Map<String, dynamic> json) =>
PageBlockChatLink(
title: json['title'],
photo: json['photo'] == null
? null
: ChatPhotoInfo.fromJson(json['photo']),
username: json['username'],
);