MessageForwardOriginChannel.fromJson constructor

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

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'],
    );