Marks Dart and Flutter Blog

Typing in Google Dart (Part 1)
Typing in Google Dart (Part 1)
Introduction Typically, computer languages have fallen into two camps: Statically-typed languages. Dynamically-typed languages. Statically-typed Languages These languages have specific variable types and the developer compiles the code using an ‘ahead-of-time’... Read more...
Dynamic Typing - 'var' vs 'dynamic' in Google Dart
Dynamic Typing - 'var' vs 'dynamic' in Google Dart
Interchangeable Most of the Time You can define untyped variables by declaring them using the ‘var’ or ‘dynamic’ keywords. The ‘var’ keyword declares a variable without specifying its type, leaving... Read more...