MessageForwardOriginChannel.fromJson constructor
Parse from a json
Implementation
factory MessageForwardOriginChannel.fromJson(Map<String, dynamic> json) =>
MessageForwardOriginChannel(
chatId: json['chat_id'],
messageId: json['message_id'],
authorSignature: json['author_signature'],
);