StatedBuilder<T extends Listenable> constructor

const StatedBuilder<T extends Listenable>({
  1. Key? key,
  2. required StatedCreateDelegate<T> create,
  3. required StatedBuilderDelegate<T> builder,
  4. Widget? child,
})

Implementation

const StatedBuilder({
  Key? key,
  required StatedCreateDelegate<T> create,
  required this.builder,
  this.child,
})  : _value = null,
      _create = create,
      super(key: key);