PhoneCallEmpty.deserialize constructor

PhoneCallEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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

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