ContactsDeleteByPhones.deserialize constructor
ContactsDeleteByPhones.deserialize(
- 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;
}