GeoLocationError constructor

const GeoLocationError({
  1. required GeoLocationErrorCode code,
  2. required String message,
  3. int? browserCode,
})

Implementation

const GeoLocationError({
  required this.code,
  required this.message,
  this.browserCode,
});