UpdateAutoSaveSettings.deserialize constructor

UpdateAutoSaveSettings.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory UpdateAutoSaveSettings.deserialize(BinaryReader reader) {
  // Construct [UpdateAutoSaveSettings] object.
  final returnValue = UpdateAutoSaveSettings();

  // Now return the deserialized [UpdateAutoSaveSettings].
  return returnValue;
}