DEV Community

Cover image for Iterable & Iterator in Flutter & Dart
Dhruv Nakum
Dhruv Nakum

Posted on

Iterable & Iterator in Flutter & Dart

Iterable

  • If you are familiar with Dart/Flutter you are knowingly or unknowingly using Iterable in your application or program.
  • You might have come across objects like List, Map, and Set when building an application.
  • These are nothing but Iterable. You can verify this by taking a look into the implementation of these collections....

Read Full Article Here

Top comments (0)