deleteCallLog method
Implementation
@override
Future<dynamic> deleteCallLog(List<String> jidlist, bool isClearAll) async {
dynamic re;
try {
re = await mirrorFlyCallMethodChannel.invokeMethod("deleteCallLog", {"jidList": jidlist, "isClearAll": isClearAll});
LogMessage.d('RESULT ', '$re');
return re;
} on PlatformException catch (e) {
LogMessage.d("er", "$e");
rethrow;
}
}