InternalLinkTypeVideoChat.fromJson constructor

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

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'],
    );