BootAudit constructor

BootAudit({
  1. required String appKey,
  2. required BootAuditStorage storage,
  3. 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');