ShortMove constructor

ShortMove({
  1. required String from,
  2. required String to,
  3. Option<PieceType> promotion = const None(),
})

Implementation

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