Nop<C> constructor

const Nop<C>({
  1. Key? key,
  2. required Widget child,
  3. List<NopWidgetBuilder>? builders,
  4. C create(
    1. BuildContext context
    )?,
})

Implementation

const Nop({
  super.key,
  required this.child,
  this.builders,
  this.create,
})  : value = null,
      group = null,
      groupList = const [];