InteractionCtrl<T extends InteractionFractal> constructor

InteractionCtrl<T extends InteractionFractal>({
  1. String name = 'interaction',
  2. required FutureOr<T> make(
    1. dynamic
    ),
  3. required Word extend,
  4. List<Attr> attributes = const <Attr>[],
})

Implementation

InteractionCtrl({
  super.name = 'interaction',
  required super.make,
  required super.extend,
  super.attributes = const <Attr>[],
});