SimpleStateHolder<T> constructor

SimpleStateHolder<T>(
  1. {Key? key,
  2. Widget? child,
  3. bool lazy = false,
  4. required StateValueBuilder<T> builder}
)

Implementation

SimpleStateHolder({
  Key? key,
  Widget? child,
  this.lazy = false,
  required this.builder,
}) : super(key: key, child: child);