Asynchronous programming has always been a hot topic in programming and will continue to be […]
Author: vandad
Dart: Generics
Generics are a topic in Dart, and in all programming languages that support generics, that […]
Dart: Extensions
Extensions in Dart allow you to add functionality to an already closed piece of logic, […]
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.