CDKUtilDisclosure constructor

const CDKUtilDisclosure(
  1. {Key? key,
  2. required Widget title,
  3. required Widget child,
  4. ValueChanged<bool>? onChanged}
)

Implementation

const CDKUtilDisclosure({
  Key? key,
  required this.title,
  required this.child,
  this.onChanged,
}) : super(key: key);