Reactive constructor

Reactive({
  1. Key? key,
  2. List bindDependencies = const [Null],
  3. Widget elseShow = const SizedBox(),
  4. bool showIf()?,
  5. required Widget builder(),
})

Implementation

Reactive(
    {super.key,
    this.bindDependencies = const [Null],
    this.elseShow = const SizedBox(),
    this.showIf,
    required this.builder});