ShortMove constructor

ShortMove({
  1. required String from,
  2. required String to,
  3. required PieceType promotion,
})

Implementation

ShortMove({
  required this.from,
  required this.to,
  required this.promotion,
});