MssqlQueryRecorder constructor
MssqlQueryRecorder({
- int capacity = 256,
Implementation
MssqlQueryRecorder({this.capacity = 256}) {
if (capacity < 1) {
throw ArgumentError.value(
capacity,
'capacity',
'A recorder with no room cannot keep an event.',
);
}
}