quiet property

List<Move> quiet

All moves that don't involve a capture.

Implementation

List<Move> get quiet => where((e) => !e.capture).toList();