insertBusyStatus method
This method is used to insert the busy status.
Implementation
@override
Future<bool?> insertBusyStatus(String busyStatus) async {
bool? res;
try {
res = await mirrorFlyMethodChannel
.invokeMethod<bool>('insertBusyStatus', {"busy_status": busyStatus});
return res;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}