State constructor

const State({
  1. required String completedTag,
  2. required String toBeCompletedTag,
})

Special case where we need the tag values as we cannot build them.

Implementation

const State({
  required this.completedTag,
  required this.toBeCompletedTag,
});