getUserConsentStatus static method

Future<bool> getUserConsentStatus()

Get the user consent status

Implementation

static Future<bool> getUserConsentStatus() async {
  if(!Platform.isAndroid) return false;
  return await _channel.invokeMethod("Pushe.getUserConsentStatus");
}