updateAutosaveSettings property

UpdateAutosaveSettings? updateAutosaveSettings

Autosave settings for some type of chats were updated

Implementation

UpdateAutosaveSettings? get updateAutosaveSettings {
  if (this is UpdateAutosaveSettings) {
    return this as UpdateAutosaveSettings;
  }
  return null;
}