CustomValueNotifier<T> constructor

CustomValueNotifier<T>(
  1. T initialValue, {
  2. CustomNotifierMode mode = CustomNotifierMode.normal,
  3. bool asyncNotification = false,
})

Implementation

CustomValueNotifier(
  T initialValue, {
  this.mode = CustomNotifierMode.normal,
  this.asyncNotification = false,
}) : _value = initialValue;