UpdateChatReadOutbox.fromJson constructor

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

Parse from a json

Implementation

factory UpdateChatReadOutbox.fromJson(Map<String, dynamic> json) =>
    UpdateChatReadOutbox(
      chatId: json['chat_id'],
      lastReadOutboxMessageId: json['last_read_outbox_message_id'],
      extra: json['@extra'],
      clientId: json['@client_id'],
    );