UpdateChatDefaultDisableNotification.fromJson constructor

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

Parse from a json

Implementation

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