TargetChatInternalLink.fromJson constructor

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

Parse from a json

Implementation

factory TargetChatInternalLink.fromJson(Map<String, dynamic> json) =>
    TargetChatInternalLink(
      link: InternalLinkType.fromJson(json['link']),
    );