ShortMove constructor

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

Implementation

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