then method

ConditionBuilder<T> then(
  1. T value()
)

Creates a condition builder with the initial condition and value.

Implementation

ConditionBuilder<T> then(T Function() value) {
  return ConditionBuilder<T>._(
    conditions: [ConditionExt(condition: this, value: value)],
  );
}