AccountGetNotifySettings.deserialize constructor

AccountGetNotifySettings.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory AccountGetNotifySettings.deserialize(BinaryReader reader) {
  // Read [AccountGetNotifySettings] fields.
  final peer = reader.readObject() as InputNotifyPeerBase;

  // Construct [AccountGetNotifySettings] object.
  final returnValue = AccountGetNotifySettings(peer: peer);

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