checkPermissionRationale static method

Future<bool> checkPermissionRationale()

Implementation

static Future<bool> checkPermissionRationale() async {
  final bool result = await _channel.invokeMethod('checkPermissionRationale');
  print("Did the user rejected the permission?: $result");
  return result;
}