DisclosureProps constructor

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

Implementation

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