State constructor
State({
- required Matrix mtx,
- required TraverseQueue queue,
- int x = 0,
- int y = 0,
- int iterations = 0,
Implementation
State({
required this.mtx,
required this.queue,
this.x = 0,
this.y = 0,
this.iterations = 0,
});