ArcaneDisclosure constructor

const ArcaneDisclosure({
  1. required Widget summary,
  2. required Widget child,
  3. bool open = false,
  4. DisclosureVariant variant = DisclosureVariant.default_,
  5. bool showChevron = true,
  6. bool showTreeLines = true,
  7. String? classes,
  8. Key? key,
})

Implementation

const ArcaneDisclosure({
  required this.summary,
  required this.child,
  this.open = false,
  this.variant = DisclosureVariant.default_,
  this.showChevron = true,
  this.showTreeLines = true,
  this.classes,
  super.key,
});