setLocationConsent static method

Future<void> setLocationConsent(
  1. bool value
)

Sets the location consent.

Implementation

static Future<void> setLocationConsent(bool value) async {
  await _channel.invokeMethod('setLocationConsent', value);
  _locationConsent = value;
}