import 'package:sense_the_rhythm/models/arrow_direction.dart'; class Note { final double time; final ArrowDirection direction; double position = 0; bool? wasHit; Note({required this.time, required this.direction}); }