getMyBusyStatus method
Implementation
@override
Future<dynamic> getMyBusyStatus() async {
dynamic response = "";
try {
response = await mirrorFlyMethodChannel.invokeMethod('getMyBusyStatus');
debugPrint("getMyBusyStatus Result ==> $response");
return response;
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}