Javatpoint Logo
Javatpoint Logo

Dart Constants

Dart Constant is defined as an immutable object, which means it can't be changed or modified during the execution of the program. Once we initialize the value to the constant variable, it cannot be reassigned later.

Defining/Initializing Constant in Dart

The Dart constant can be defined in the following two ways.

  • Using the final keyword
  • Using the const keyword

It is beneficial when we want to keep the value unchanged in the whole program. The keywords final and const are used to create a constant variable. Both keywords final and const are used as a conjunction with the data-type. Dart will throw an exception if we try to modify the constant variable.

A const keyword represents the compile-time constant, and the final variable can be set only once.

Define Constant Using final Keyword

We can define the constant by using the final keyword. The syntax is given below.

Syntax:

Let's understand the following example.

Example -

Output:

10
20

Define Constants Using const Keyword

We can define constant using the const keyword. The syntax is given below.

Syntax -

Let's understand the following example.

Output:

Peter

Next TopicDart Number





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA