ContactsGetContactIDs.deserialize constructor

ContactsGetContactIDs.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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

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