isBusyStatusEnabled method

  1. @override
Future<bool?> isBusyStatusEnabled()
override

Implementation

@override
Future<bool?> isBusyStatusEnabled() async {
  bool? res;
  try {
    res = await mirrorFlyMethodChannel
        .invokeMethod<bool>('isBusyStatusEnabled');
    debugPrint("isBusyStatusEnabled--> $res");
    return res;
  } on PlatformException catch (e) {
    debugPrint("Platform Exception ===> $e");
    rethrow;
  } on Exception catch (error) {
    debugPrint("Exception ==> $error");
    rethrow;
  }
}