LocationResult constructor

LocationResult({
  1. LatLng? location,
  2. String? errorMessage,
})

Implementation

LocationResult({this.location, this.errorMessage})
  : success = location != null;