MssqlQueryRecorder constructor

MssqlQueryRecorder({
  1. 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.',
    );
  }
}