AuditLog constructor

AuditLog({
  1. Clock clock = const SystemClock(),
  2. int capacity = 1000,
})

Creates an audit log retaining up to capacity records.

Implementation

AuditLog({Clock clock = const SystemClock(), this.capacity = 1000})
  : _clock = clock;