PrefNotifier<T> constructor

PrefNotifier<T>(
  1. String prefKey,
  2. T defaultValue
)

Implementation

PrefNotifier(this.prefKey, this.defaultValue) : super(defaultValue) {
  _init();
}