ValueListenableBuilder2<A, B> constructor

const ValueListenableBuilder2<A, B>({
  1. Key? key,
  2. required ValueNotifier<A> firstNotifier,
  3. required ValueNotifier<B> secondNotifier,
  4. required Widget builder(
    1. BuildContext,
    2. A,
    3. B,
    4. Widget?,
    ),
  5. Widget? child,
})

Implementation

const ValueListenableBuilder2({
  super.key,
  required this.firstNotifier,
  required this.secondNotifier,
  required this.builder,
  this.child,
});