DisclosureConfig constructor

const DisclosureConfig({
  1. Duration expandDuration = const Duration(milliseconds: 200),
  2. Duration collapseDuration = const Duration(milliseconds: 200),
  3. Curve expandCurve = Curves.easeOut,
  4. Curve collapseCurve = Curves.easeIn,
  5. double maxHeight = 52,
})

Implementation

const DisclosureConfig({
  this.expandDuration = const Duration(milliseconds: 200),
  this.collapseDuration = const Duration(milliseconds: 200),
  this.expandCurve = Curves.easeOut,
  this.collapseCurve = Curves.easeIn,
  this.maxHeight = 52,
});