getLocalCallLogs method
Implementation
@override
Future<dynamic> getLocalCallLogs() async {
dynamic re;
try {
re = await mirrorFlyCallMethodChannel.invokeMethod("getLocalCallLogs", {});
LogMessage.d('RESULT ', '$re');
return re;
} on PlatformException catch (e) {
LogMessage.d("er", "$e");
return re;
}
}