-
Book Overview & Buying
-
Table Of Contents
Flutter Cookbook - Second Edition
By :
All programming languages possess need ways to organize data. We've already covered the most common way – objects. These class-based structures allow you to define how you want to model your data and manipulate it with methods.
If you want to model groups of similar data, collections are your solution. A collection contains a group of elements. There are many types of collections in Dart, but we are going to focus on the three most popular ones: List, Map, and Set.
These three main types of collections can be found in almost every programming language, but sometimes by a different name. If Dart is not your first programming language, then this matrix should help you correlate collections...