Dart - Variables
var
var test = 123; // test typeof int
test = 456; // pass
test = 'test'; // faildynamic
dyanmic test = 123; // test typeof int
test = 456; // pass
test = 'test'; // passfinal
final test = 123;
test = 456; // fail
test = 'test'; // failconst
late
num
type casting
null safety
Last updated