GeoPoint constructor

const GeoPoint({
  1. required double long,
  2. required double lat,
  3. required int accessHash,
  4. int? accuracyRadius,
})

Geo Point constructor.

Implementation

const GeoPoint({
  required this.long,
  required this.lat,
  required this.accessHash,
  this.accuracyRadius,
}) : super._();