isCustomClickAllowed method

Future<bool?> isCustomClickAllowed()

Implementation

Future<bool?> isCustomClickAllowed() async {
  final bool? isAllowed = await _channel.invokeMethod(
    'isCustomClickAllowed',
  );
  return isAllowed;
}