CommandPushButton constructor

const CommandPushButton({
  1. Key? key,
  2. required String label,
  3. bool autofocus = false,
  4. required VoidCallback? onPressed,
})

Implementation

const CommandPushButton({
  Key? key,
  required this.label,
  this.autofocus = false,
  required this.onPressed,
}) : super(key: key);