callLogs method

Future<CallLogs> callLogs()

Implementation

Future<CallLogs> callLogs()async{
 var list =  await _channel.invokeMethod("call_logs");
  return  CallLogs.fromJson(jsonDecode(list));
}