CarpenterCommandInputButton<I> constructor

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

Implementation

const CarpenterCommandInputButton({
  super.key,
  required this.command,
  required this.inputBuilder,
  this.child,
  this.secondary,
});