Declaring Type-Safe Collections
Learn about declaring type-safe collections using generics.
We'll cover the following...
Declaring Type-Safe Collections
In the previous lesson, you learned that Dart allows for storing different types of data in one collection. But a problem could arise if Dart is unable to handle all types of data in a given collection.
In this lesson, you will learn to declare type-safe collections to solve this problem.
To ensure type safety, the angular brackets <>
with data type enclosed, are used to declare the collection of the given data type. Type safety ensures that only one type of data can be stored in one collection. ...