Enumerated Types #1
This lesson introduces Enumerated Types in Dart.
We'll cover the following...
We'll cover the following...
Introduction
In Dart 1.8 release, enumerated Types (a.k.a. Enums) were added as an experimental feature.
Enums are like a class that represent a fixed number of constant values. For example, you have an app that fetches data from a remote server. Depending on the type of response received from the server, the app shows one of the following statuses:
- done: The app received the response successfully.
- waiting: The app is waiting for the response.
- error: The app received an error from the server.
The above three ...