DisableWidget constructor

const DisableWidget({
  1. Key? key,
  2. required Widget child,
  3. bool? disable,
})

Implementation

const DisableWidget({
  Key? key,
  required this.child,
  this.disable,
}) : super(key: key);