getCallUsersList method

  1. @override
Future<String> getCallUsersList()
override

This method is used to get the call users list.

Implementation

@override
Future<String> getCallUsersList() async {
  String callList;
  try {
    callList =
        await mirrorFlyCallMethodChannel.invokeMethod('getCallUsersList');
    LogMessage.d('getCallUsers :', callList);
    return callList;
  } on PlatformException catch (e) {
    LogMessage.d("Platform Exception =", " $e");
    rethrow;
  } on Exception catch (error) {
    LogMessage.d("Exception ", " $error");
    rethrow;
  }
}