GameInfo constructor

const GameInfo({
  1. Move? lastMove,
  2. String? lastFrom,
  3. String? lastTo,
  4. String? checkSq,
})

Implementation

const GameInfo({
  this.lastMove,
  this.lastFrom,
  this.lastTo,
  this.checkSq,
});