InternalLinkTypeVideoChat.fromJson constructor
Parse from a json
Implementation
factory InternalLinkTypeVideoChat.fromJson(Map<String, dynamic> json) => InternalLinkTypeVideoChat(
chatUsername: json['chat_username'],
inviteHash: json['invite_hash'],
isLiveStream: json['is_live_stream'],
extra: json['@extra'],
clientId: json['@client_id'],
);