InstrumentRule constructor

const InstrumentRule({
  1. String? meterName,
  2. String? instrumentName,
  3. String? listenerName,
  4. required int scopes,
  5. bool enable = false,
})

Implementation

const InstrumentRule({
  this.meterName,
  this.instrumentName,
  this.listenerName,
  required int scopes,
  this.enable = false,
}) : _scopes = scopes;