then method
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)],
);
}
Creates a condition builder with the initial condition and value.
ConditionBuilder<T> then(T Function() value) {
return ConditionBuilder<T>._(
conditions: [ConditionExt(condition: this, value: value)],
);
}