For.of constructor

For.of(
  1. List<Widget> _list
)

There is an Constructor for looping through a given list of widgets:

For.of(List<Widget>[
		Command('say 1'),
		Command('say 2'),
		Command('say 3')
	]
)

Implementation

For.of(this._list);