TabNote constructor

TabNote({
  1. required int string,
  2. required int fret,
  3. Duration? duration,
  4. bool isHarmonic = false,
  5. bool isMuted = false,
})

Implementation

TabNote({
  required this.string,
  required this.fret,
  this.duration,
  this.isHarmonic = false,
  this.isMuted = false,
});