onSoftDrop method
Points for soft drop (1 per cell) and hard drop (2 per cell).
Implementation
ScoreState onSoftDrop(ScoreState state, int cells) =>
state.copyWith(score: state.score + cells);
Points for soft drop (1 per cell) and hard drop (2 per cell).
ScoreState onSoftDrop(ScoreState state, int cells) =>
state.copyWith(score: state.score + cells);