UpdateRecentStickers.deserialize constructor

UpdateRecentStickers.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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