Conditional Operators

This class of operators contain those operators which are used to perform comparison on the operands. It goes like this: 

Operator SymbolOperator NameOperator Description
condition ? expersion1 : expersion2Conditional OperatorIt is a simple version of if-else statement. If the condition is true than expersion1 is executed else expersion2 is executed.
expersion1 ?? expersion2Conditional OperatorIf expersion1 is non-null returns its value else returns expression2 value.

Example: Using Conditional Operators in the program 

Dart
void main()
{
    int a = 5;

    // Conditional Statement
    var c = (a < 10) ? "Statement is Correct, Geek" : "Statement is Wrong, Geek";
    print(c);

    
    // Conditional statement
      int? n;
      // Warning: Operand of null-aware operation '??' has type 'int' which excludes null.
      // For batter practice make both same type to avoid warning
      // var d = n ?? 10;
      var d = n ?? "n has Null value";
      print(d);

    // After assigning value to n
    n = 10;
      // we make it all ready null safe 
    //d = n ? ? "n has Null value";
      d = n;
    print(d);
}

Output: 

Statement is Correct, Geek
n has Null value
10

Note: Also In The Above Code,You May Notice That The Variable ‘n’ is Declared As “int? n”.By declaring n as int?, you are indicating that the variable n can hold an integer value or a null value. The ? denotes that the variable is nullable, meaning it can be assigned a null value in addition to integer values.

Operators in Dart

The operators are special symbols that are used to carry out certain operations on the operands. The Dart has numerous built-in operators which can be used to carry out different functions, for example, ‘+’ is used to add two operands. Operators are meant to carry operations on one or two operands. 

Similar Reads

Precedence Table of Operators in Dart

Description Operator Associativity unary postfix expr++ expr– () [] ?[] . ?. ! None unary prefix -expr !expr ~expr ++expr –expr await expr None multiplicative * / % ~/ Left additive + – Left shift << >> >>> Left bitwise AND & Left bitwise XOR ^ Left bitwise OR | Left relational and type test >= > <= < as is is! None equailty == != None logical AND && Left logical OR || Left if-null ?? Left conditional expr ? expr2 : expr3 Right cascade .. ?.. Left assignment = *= /= += -= &= ^= etc. Right...

Different types of operators in Dart

The following are the various types of operators in Dart:...

1. Arithmetic Operators

This class of operators contain those operators which are used to perform arithmetic operation on the operands. They are binary operators i.e they act on two operands. They go like this:...

2. Relational Operators

This class of operators contain those operators which are used to perform relational operation on the operands. It goes like this:...

3. Type Test Operators

This class of operators contain those operators which are used to perform comparison on the operands. It goes like this:...

4. Bitwise Operators

This class of operators contain those operators which are used to perform bitwise operation on the operands. It goes like this:...

5. Assignment Operators

This class of operators contain those operators which are used to assign value to the operands. It goes like this:...

6. Logical Operators

This class of operators contain those operators which are used to logically combine two or more conditions of the operands. It goes like this:...

7. Conditional Operators

This class of operators contain those operators which are used to perform comparison on the operands. It goes like this:...

8. Cascade Notation Operators:

This class of operators allows you to perform a sequence of operation on the same element. It allows you to perform multiple methods on the same object. It goes like this:...

Contact Us