SharedValue<T> constructor

const SharedValue<T>({
  1. Key? key,
  2. T? initialValue,
  3. required Widget child,
})

Implementation

const SharedValue({Key? key, this.initialValue, required this.child})
    : super(key: key);