Dart If Else Statement
/* Syntax */
if(boolean_exp){
// If the boolean exp is true.
} else {
// If the boolean exp is false.
}
/* Example */
var isLoggedIn= true;
if (isLoggedIn) {
print("Welcome Home !!");
} else{
print("You are not logged in !!");
}