consentGiven property

Future<bool> consentGiven

Returns true if user has already saved their preferences.

Implementation

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