getLogItems method

List<GpLogItem>? getLogItems({
  1. int? limit,
})

Get the current list of log items.

Implementation

List<GpLogItem>? getLogItems({int? limit}) {
  return _logDb?.getLogItems(limit: limit);
}