ArcaneDisclosure.filled constructor

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

Implementation

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