fromJson static method
Inherited by: TargetChatChosen TargetChatCurrent TargetChatInternalLink
Implementation
static TargetChatChosen? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return TargetChatChosen(
types: TargetChatTypes.fromJson(tdMapFromJson(json['types'])),
);
}