NotifyChats.deserialize constructor

NotifyChats.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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