ContactsDeleteByPhones.deserialize constructor

ContactsDeleteByPhones.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory ContactsDeleteByPhones.deserialize(BinaryReader reader) {
  // Read [ContactsDeleteByPhones] fields.
  final phones = reader.readVectorString();

  // Construct [ContactsDeleteByPhones] object.
  final returnValue = ContactsDeleteByPhones(phones: phones.items);

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