StateHolder<T> constructor
Constructs a new StateHolder. This isn's something you need to construct
Implementation
const StateHolder({
required this.state,
required Widget child,
final Key? key,
}) : super(key: key, child: child);