showPM method

Future<void> showPM()

Show Privacy Manger

Implementation

Future<void> showPM() async {
  try {
    print('zeige cmp');
    _channel.invokeMethod('showPM', <String, dynamic>{
      'accountId': accountId,
      'propertyId': propertyId,
      'propertyName': propertyName,
      'pmId': pmId
    });
  } on PlatformException catch (e) {
    print(e);
  }
}