list property

List get list

Implementation

List get list {
  return _list;
}
set list (List value)

Implementation

set list(List value) {
  _list = value;
  notifyListeners();
}