If constructor

If(
  1. bool statement
)

Implementation

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