ProductState.completed constructor

const ProductState.completed(
  1. {required String tag}
)

Simple case where we can build the tag values, for 'completed'.

Implementation

const ProductState.completed({required final String tag})
    : this.simple(tag: tag, action: 'completed');