enableDisableBusyStatus method
Implementation
@override
Future<bool?> enableDisableBusyStatus(bool enable) async {
bool? res;
try {
res = await mirrorFlyMethodChannel.invokeMethod<bool>('enableDisableBusyStatus', {"enable": enable});
return res;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}