State constructor

State({
  1. required Matrix mtx,
  2. required TraverseQueue queue,
  3. int x = 0,
  4. int y = 0,
})

Implementation

State({
  required this.mtx,
  required this.queue,
  this.x = 0,
  this.y = 0,
});