CreationPanelAction constructor

const CreationPanelAction({
  1. Key? key,
  2. required CreationPanelActionAlignment align,
  3. required Widget child,
  4. required ValueNotifier<double> animationNotifier,
})

Implementation

const CreationPanelAction(
    {Key? key,
    required this.align,
    required this.child,
    required this.animationNotifier})
    : super(key: key);