Instrument constructor

Instrument({
  1. required String name,
})

Implementation

Instrument({required this.name}) {
  _byName[name] = this;
}