getUserConsent static method

Future<bool?> getUserConsent()

Returns the userConsent

Implementation

static Future<bool?> getUserConsent() async {
  final bool? userConsent =
      await _methodChannel.invokeMethod('getUserConsent');
  return userConsent;
}