An Introduction to Operators
Let’s overview the operators provided by Dart.
We'll cover the following...
Overview
Operators are symbols that perform operations used for modifying or manipulating data. Manipulating data is an essential part of any programming language, and Dart is no different, providing a rich set of operators for its basic types.
Types of operators
In this chapter, ...