Dart Crash Course for Flutter
What is Dart?
it’s coding language to make multi-platform apps. (With flutter framework)
it’s a Static typed language. that means the type of a variable is fixed once it’s declared.
var name = "piyush"; // Decleared as String
name = 12; ...
the-os-coder.hashnode.dev2 min read