StateProxy<TState, TChild> constructor

const StateProxy<TState, TChild>({
  1. Key? key,
  2. required ProxyAccessor<TState, TChild> accessor,
  3. required Widget child,
})

Implementation

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