UpdatesTooLong.deserialize constructor

UpdatesTooLong.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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