RemoteActionButtons constructor

const RemoteActionButtons({
  1. Key? key,
  2. bool isValid = true,
  3. required Widget invalidStatusLabel,
  4. required VoidCallback? onConfirmPressed,
  5. required Widget confirmLabel,
  6. bool showCancelButton = true,
})

Implementation

const RemoteActionButtons({
  super.key,
  this.isValid = true,
  required this.invalidStatusLabel,
  required this.onConfirmPressed,
  required this.confirmLabel,
  this.showCancelButton = true,
});