isCustomClickAllowed method

Future<bool?> isCustomClickAllowed()

Implementation

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