getBusyStatusList static method
Retrieves the list of busy statuses asynchronously.
This static function asynchronously retrieves the list of busy statuses from the platform using getBusyStatusList. The returned value is a Future that completes with a String representing the busy status list.
Example:
Mirrorfly.getBusyStatusList().then((value) {
Implementation
// if (value != null) {
// busyStatusList(statusDataFromJson(value));
// busyStatusList.refresh();
// }
// }).catchError((onError) {
//
// });
/// ```
static Future<String?> getBusyStatusList() {
return FlyChatFlutterPlatform.instance.getBusyStatusList();
}