CustomActionDisable constructor

const CustomActionDisable({
  1. Key? key,
  2. required Color backgroundColor,
  3. Color borderColor = Colors.transparent,
  4. required Widget? child,
})

Implementation

const CustomActionDisable({
  super.key,
  required this.backgroundColor,
  this.borderColor = Colors.transparent,
  required this.child,
});