DisableWidget constructor

const DisableWidget({
  1. Key? key,
  2. bool ignoring = true,
  3. double opacity = 0.5,
  4. required Widget child,
})

Implementation

const DisableWidget({
  super.key,
  this.ignoring = true,
  this.opacity = 0.5,
  required this.child,
});