whenElse method
- bool condition,
- T elseValue
Implementation
T whenElse(bool condition, T elseValue) {
if (condition) {
return this;
}
return elseValue;
}
T whenElse(bool condition, T elseValue) {
if (condition) {
return this;
}
return elseValue;
}