AccountGetDefaultGroupPhotoEmojis.deserialize constructor

AccountGetDefaultGroupPhotoEmojis.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory AccountGetDefaultGroupPhotoEmojis.deserialize(BinaryReader reader) {
  // Read [AccountGetDefaultGroupPhotoEmojis] fields.
  final hash = reader.readInt64();

  // Construct [AccountGetDefaultGroupPhotoEmojis] object.
  final returnValue = AccountGetDefaultGroupPhotoEmojis(
    hash: hash,
  );

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