#multi_listenable

A widget whose content stays synced with a list of Listenable.

MultiListenableBuilder( 
	listenable: [ /* your listables to listen */],
	builder : (context) => Container(),
)

## Parameters

# Iterable[Listenable] listenable
An iterable of [Listenable] to listen. When one of the listenable notify,
the builder function is called.

# [WidgetBuilder] builder 
A function to call every time a [Listener] passed in [listenable] notify.

Libraries

multi_listenable