Generator Functions

In this lesson, you will learn about the generator functions.

Introduction

Dart Generator Functions are used to generate a sequence of values on-demand in a lazy manner. Such a value sequence can be generated either synchronously or asynchronously. There are two types of built-in generator functions available to support both scenarios:

  • Synchronous Generator: The synchronous generator function returns an
...