getCallList method
Get list of current calls
Implementation
Future<List<Call>?> getCallList() async {
final calls = await CallClientPlatform.instance.getCallList();
log("ExolvePlugin: call_client: getCallList: calls = $calls");
return calls;
}