Disabled constructor

Disabled({
  1. required Widget child,
  2. bool disabled = false,
  3. bool noGrayScale = false,
  4. bool overrideTap = true,
  5. void onInteractionAttempt()?,
})

Implementation

Disabled({
  required this.child,
  this.disabled = false,
  this.noGrayScale = false,
  this.overrideTap = true,
  this.onInteractionAttempt,
});