getBusyStatusList method

  1. @override
Future getBusyStatusList()
override

Implementation

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