DisclosureProps constructor

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

Implementation

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