PrefNotifier<T> constructor

PrefNotifier<T>(
  1. String key, {
  2. T initFunc()?,
  3. dynamic checkValue,
})

Implementation

PrefNotifier(
  String key, {
  T Function()? initFunc,
  checkValue,
}) : super(commonStorage, key, initFunc: initFunc, checkValue: checkValue);