toNotifiableList method

NotifiableList<E> toNotifiableList({
  1. bool growable = true,
})

Create a NotifiableList containing the same elements as this list.

Implementation

NotifiableList<E> toNotifiableList({bool growable = true}) =>
    NotifiableList.of(_values, growable: growable);