AtomBuilder<T> constructor

AtomBuilder<T>({
  1. required Widget builder(
    1. BuildContext context,
    2. T value
    ),
  2. required Atom atom,
  3. Key? key,
})

Constructor. builder the builder function. atom the Atom to use the value of.

Implementation

AtomBuilder({required this.builder, required this.atom, Key? key})
    : super(key: key);