KntExpandableWidget constructor

const KntExpandableWidget({
  1. Key? key,
  2. required Widget child,
  3. bool expandedAtFirst = false,
  4. Duration? duration,
})

Implementation

const KntExpandableWidget({
  super.key,
  required this.child,
  this.expandedAtFirst = false,
  this.duration,
});