MapPrefNotifier<T> constructor

MapPrefNotifier<T>(
  1. String prefKey,
  2. T mapFrom(
    1. String?
    ),
  3. String mapTo(
    1. T
    )
)

Implementation

MapPrefNotifier(this.prefKey, this.mapFrom, this.mapTo)
    : super(mapFrom(null)) {
  _init();
}