RhythmPlayerConfig constructor

RhythmPlayerConfig({
  1. int? beatsPerMeasure,
  2. int? beatsPerMinute,
  3. bool? publish,
})

Constructs the RhythmPlayerConfig.

Implementation

RhythmPlayerConfig({
  this.beatsPerMeasure,
  this.beatsPerMinute,
  this.publish,
});