GeoPointEmpty.deserialize constructor

GeoPointEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory GeoPointEmpty.deserialize(BinaryReader reader) {
  // Construct [GeoPointEmpty] object.
  final returnValue = GeoPointEmpty();

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