BootAudit constructor
BootAudit({
- required String appKey,
- required BootAuditStorage storage,
- int maxEntries = 400,
Implementation
BootAudit({
required this.appKey,
required this.storage,
this.maxEntries = 400,
}) : _auditKey = '${appKey}_boot_audit_v1',
_counterKey = '${appKey}_boot_counter_v1',
_cache = _readRaw(storage, '${appKey}_boot_audit_v1');