EmptyValueNotifier<T> constructor

EmptyValueNotifier<T>(
  1. T _value, {
  2. EqualityComparator<T>? comparator,
})

Creates a ChangeNotifier that wraps this value.

Implementation

EmptyValueNotifier(
  this._value, {
  this.comparator,
}) : _isEmpty = false;