InputStickerSetDice.deserialize constructor

InputStickerSetDice.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory InputStickerSetDice.deserialize(BinaryReader reader) {
  // Read [InputStickerSetDice] fields.
  final emoticon = reader.readString();

  // Construct [InputStickerSetDice] object.
  final returnValue = InputStickerSetDice(
    emoticon: emoticon,
  );

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