ContactsDeleteContacts.deserialize constructor

ContactsDeleteContacts.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory ContactsDeleteContacts.deserialize(BinaryReader reader) {
  // Read [ContactsDeleteContacts] fields.
  final id = reader.readVectorObject<InputUserBase>();

  // Construct [ContactsDeleteContacts] object.
  final returnValue = ContactsDeleteContacts(
    id: id,
  );

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