AttachableStateAttacherWidget<T extends AttachableStateMixin<S>, S> constructor

const AttachableStateAttacherWidget<T extends AttachableStateMixin<S>, S>({
  1. Key? key,
  2. required T target,
  3. required S state,
  4. required Widget child,
})

Implementation

const AttachableStateAttacherWidget({
  super.key,
  required this.target,
  required this.state,
  required this.child,
});