UpdateRecentReactions.deserialize constructor

UpdateRecentReactions.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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