ReactionNotificationsFromContacts.deserialize constructor

ReactionNotificationsFromContacts.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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