getCallUsersList method
Implementation
@override
Future<dynamic> getCallUsersList() async {
dynamic 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;
}
}