fromJson static method
Implementation
static TMeUrlTypeChatInvite? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return TMeUrlTypeChatInvite(
info: ChatInviteLinkInfo.fromJson(tdMapFromJson(json['info'])),
);
}