MessageForwardOriginChat.fromJson constructor

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

Parse from a json

Implementation

factory MessageForwardOriginChat.fromJson(Map<String, dynamic> json) =>
    MessageForwardOriginChat(
      senderChatId: json['sender_chat_id'],
      authorSignature: json['author_signature'],
    );