ProductState constructor

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

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

Implementation

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