State.completed constructor

const State.completed({
  1. required String tag,
})

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

Implementation

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