setIgnoredInstruments static method

void setIgnoredInstruments(
  1. Set<CoralogixIgnoredInstrument> instruments
)

Implementation

static void setIgnoredInstruments(
  Set<CoralogixIgnoredInstrument> instruments,
) {
  _ignoredInstruments
    ..clear()
    ..addAll(instruments);
}