ContactsEditCloseFriends.deserialize constructor

ContactsEditCloseFriends.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory ContactsEditCloseFriends.deserialize(BinaryReader reader) {
  // Read [ContactsEditCloseFriends] fields.
  final id = reader.readVectorInt64();

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

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