DecryptedMessageMediaGeoPoint008.deserialize constructor

DecryptedMessageMediaGeoPoint008.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory DecryptedMessageMediaGeoPoint008.deserialize(BinaryReader reader) {
  // Read [DecryptedMessageMediaGeoPoint008] fields.
  final lat = reader.readFloat64();
  final long = reader.readFloat64();

  // Construct [DecryptedMessageMediaGeoPoint008] object.
  final returnValue = DecryptedMessageMediaGeoPoint008(
    lat: lat,
    long: long,
  );

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