getLocalCallLogs method

  1. @override
Future getLocalCallLogs()
override

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;
  }
}