ListenableList<T>.from constructor

ListenableList<T>.from(
  1. List<T> list
)

This is a ChangeNotifier class that can be handled as a list.

When the contents of the list change, you will be notified of the change.

Implementation

ListenableList.from(List<T> list) : super(List<T>.from(list));