Extensions in Dart allow you to add functionality to an already closed piece of logic, […]
Month: July 2022
Dart: Mixins
Mixins are reusable pieces of code that can be brought into another class or mixin. […]
Dart: Classes
Classes in Dart embody related pieces of logic into a named package. A class called […]
Dart: Synchronous Generators
Synchronous generators are a language feature that are available in JavaScript and Dart. They are […]
Dart: Demystifying Optionals
Optionals in Dart introduce a second state to a variable: where the variable has no value at all, meaning that it contains nothing, or null as it can also be called.