CarpenterCommandButton<I> constructor

const CarpenterCommandButton<I>({
  1. Key? key,
  2. required CarpenterCommand<I> command,
  3. required I input,
  4. Widget? child,
  5. bool? secondary,
})

Implementation

const CarpenterCommandButton({
  super.key,
  required this.command,
  required this.input,
  this.child,
  this.secondary,
});