geolocationConsentGiven property

Future<bool> geolocationConsentGiven

Returns true if user gave consent to Geolocation purpose.

Implementation

static Future<bool> get geolocationConsentGiven async {
  final bool result = await _channel.invokeMethod('geolocationConsentGiven');
  return result;
}