GeolocationErrorResponse constructor

GeolocationErrorResponse({
  1. required List<GeolocationError> errors,
  2. required int code,
  3. required String message,
})

Implementation

GeolocationErrorResponse({
  required this.errors,
  required this.code,
  required this.message,
});