InputNotifyChats.deserialize constructor

InputNotifyChats.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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