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