InvalidCoordinateException constructor

const InvalidCoordinateException(
  1. String message, {
  2. double? latitude,
  3. double? longitude,
  4. String? code,
})

Implementation

const InvalidCoordinateException(
  super.message, {
  this.latitude,
  this.longitude,
  super.code,
});