getCallLogsList method
This method is used to get the call log list.
Implementation
@override
Future<void> getCallLogsList(
int currentPage, Function(FlyResponse response)? callback) async {
String? re;
try {
re = await mirrorFlyCallMethodChannel
.invokeMethod("getCallLogsList", {"currentPage": currentPage});
callback?.call(
FlyResponse(true, convertCallLogsToJson(re), FlyConstants.empty));
// return convertCallLogsToJson(re);
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(e.code, e.message, e.details)));
} on Exception catch (e) {
LogMessage.d("Exception ", " $e");
callback?.call(FlyResponse(false, FlyConstants.empty, FlyConstants.empty,
FlyException(FlyErrorCode.unHandle, FlyErrorMessage.unHandle, e)));
}
}