DisabledBox constructor

const DisabledBox({
  1. Key? key,
  2. bool enabled = true,
  3. required Widget child,
  4. Widget? note,
})

Implementation

const DisabledBox({
  super.key,
  this.enabled = true,
  required this.child,
  this.note,
});