zaagan
7/11/2019 - 1:42 AM

Dart If Else Statement

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 !!");
}