MeteorValueProvider<T> constructor

MeteorValueProvider<T>({
  1. String? stateKey,
  2. T? initialValue,
})

Implementation

MeteorValueProvider({String? stateKey, T? initialValue})
    : super(stateKey: stateKey, initialValue: initialValue);