KeyedSubtreeModifier constructor

const KeyedSubtreeModifier({
  1. Key? key,
  2. Key? modifierKey,
  3. Widget? child,
})

Creates a widget that builds its child.

Implementation

const KeyedSubtreeModifier({
  super.key,
  super.modifierKey,
  super.child,
});