CEnable constructor

const CEnable({
  1. Key? key,
  2. bool value = true,
  3. bool inheritFromParent = true,
  4. required Widget child,
})

Implementation

const CEnable({
  Key? key,
  this.value = true,
  this.inheritFromParent = true,
  required this.child,
}) : super(key: key);