CarpenterCommandScope constructor

const CarpenterCommandScope({
  1. Key? key,
  2. required List<CarpenterCommand> commands,
  3. required Widget child,
})

Implementation

const CarpenterCommandScope({
  super.key,
  required this.commands,
  required super.child,
});