Sfz constructor

Sfz({
  1. required List<SfzGroup> groups,
  2. List<SfzControl> controls = const [],
  3. List<SfzEffect> effects = const [],
  4. List<SfzCurve> curves = const [],
  5. SfzGlobal? global,
})

Implementation

Sfz({
  required this.groups,
  this.controls = const [],
  this.effects = const [],
  this.curves = const [],
  this.global,
});