fromJson static method
Creates a object from a json
Implementation
static ChatJoinRequest fromJson(Map<String, dynamic> json) {
return ChatJoinRequest(
chat: Chat.fromJson(json['chat']!),
from: User.fromJson(json['from']!),
date: json['date']!,
bio: json['bio'],
inviteLink: callIfNotNull(ChatInviteLink.fromJson, json['invite_link']),
);
}