If constructor
If(
- bool statement
Implementation
factory If(final bool statement) {
return statement ? True() : False();
}
factory If(final bool statement) {
return statement ? True() : False();
}