ReactionNotificationsFromAll.deserialize constructor

ReactionNotificationsFromAll.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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