NiceAuditLog constructor
- Key? key,
- required List<
NiceAuditEntry> entries, - String title = 'Audit Log',
- void onEntryTap(
- NiceAuditEntry entry
- bool showFilter = true,
Implementation
const NiceAuditLog({
super.key,
required this.entries,
this.title = 'Audit Log',
this.onEntryTap,
this.showFilter = true,
});