AutosaveSettingsScopeChat.fromJson constructor

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

Parse from a json

Implementation

factory AutosaveSettingsScopeChat.fromJson(Map<String, dynamic> json) =>
    AutosaveSettingsScopeChat(
      chatId: json['chat_id'],
    );