GeoPointEmpty.deserialize constructor
GeoPointEmpty.deserialize(
- BinaryReader reader
Deserialize.
Implementation
factory GeoPointEmpty.deserialize(BinaryReader reader) {
// Construct [GeoPointEmpty] object.
final returnValue = GeoPointEmpty();
// Now return the deserialized [GeoPointEmpty].
return returnValue;
}