get static method

Get all call history log entries. Permissions are handled automatically

Implementation

static Future<Iterable<CallLogEntry>> get() async {
  final Iterable<dynamic>? result = await _channel.invokeMethod('get', null);
  return result?.map((dynamic m) => CallLogEntry.fromMap(m)) ?? _EMPTY_RESULT;
}