Notation constructor

Notation({
  1. double notationHeight = 200,
  2. double notationWidth = 125,
  3. double notationTileHeight = 30,
  4. double notationMoveWidth = 50,
  5. double notationIndexWidth = 25,
  6. TextStyle? style,
  7. Color? backgroundColor,
  8. required MoveHistoryNotifier moveHistoryNotifier,
})

Implementation

Notation({
  this.notationHeight = 200,
  this.notationWidth = 125,
  this.notationTileHeight = 30,
  this.notationMoveWidth = 50,
  this.notationIndexWidth = 25,
   this.style,
   this.backgroundColor,
  required this.moveHistoryNotifier,
});