Dart Keywords

Dart Keywords

ยท

2 min read

In every programming language there are some specific word which are reserved word for the programming language which we can not use for to declare variable name and not for any use. this keyword are only use for the specific work for which they are reserved.

Here, list are of some dart language keyword.

abstract 1continuefalsenewthis
as 1defaultfinalnullthrow
assertdeferred 1finallyoperator 1true
async 2doforpart 1try
async* 2dynamic 1get 1rethrowtypedef 1
await 2elseifreturnvar
breakenumimplements 1set 1void
caseexport 1import 1static 1while
catchexternal 1insuperwith
classextendsisswitchyield 2
constfactory 1library 1sync* 2yield* 2

Keyword can make our work easy , such as counting word , character , concatenation and so on. Apart from that some keyword use for looping , making list , mapping and other use well. but we can declare this keyword as Variable this is main point, remember well guys.

Did you find this article valuable?

Support Vinit Mepani (Flutter Developer) by becoming a sponsor. Any amount is appreciated!

ย