Skip to content
AlperZM edited this page Sep 22, 2022 · 6 revisions

Dart Language Basic Notes

Go To Variables

Declare and use variables.

Comments

How to use comments.

What Is Null Safe

In Dart a variable cannot contain null. If you need a null you can use ? mark after declare the variable. For example: int? = null

Clone this wiki locally