toNotifiableList method Null safety

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

Create a NotifiableList containing the same elements as this set.

Implementation

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