Nop<C>.value constructor

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

Implementation

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