PhoneGetGroupCallStars.deserialize constructor
PhoneGetGroupCallStars.deserialize(
- BinaryReader reader
Deserialize.
Implementation
factory PhoneGetGroupCallStars.deserialize(BinaryReader reader) {
// Read [PhoneGetGroupCallStars] fields.
final call = reader.readObject() as InputGroupCallBase;
// Construct [PhoneGetGroupCallStars] object.
final returnValue = PhoneGetGroupCallStars(call: call);
// Now return the deserialized [PhoneGetGroupCallStars].
return returnValue;
}