getMyBusyStatus static method
Retrieves the busy status of the current user asynchronously.
This method sends a request to the Mirrorfly platform to retrieve the busy status of the current user. The busy status indicates whether the user is currently engaged or busy with some activity.
Returns a Future that completes with a String representing the busy status of the user.
Example usage:
Mirrorfly.getMyBusyStatus().then((value) {
var userBusyStatus = json.decode(value);
}
Implementation
static Future<String> getMyBusyStatus() {
return FlyChatFlutterPlatform.instance.getMyBusyStatus();
}