NiceAuditLog constructor

const NiceAuditLog({
  1. Key? key,
  2. required List<NiceAuditLogEntry> entries,
  3. bool showFilters = false,
  4. List<String>? filterActions,
  5. List<String>? filterUsers,
  6. DateTimeRange<DateTime>? dateRange,
  7. ValueChanged<NiceAuditLogEntry>? onEntryTap,
})

Implementation

const NiceAuditLog({
  super.key,
  required this.entries,
  this.showFilters = false,
  this.filterActions,
  this.filterUsers,
  this.dateRange,
  this.onEntryTap,
});