KntDefaultExpandableAppBar constructor

const KntDefaultExpandableAppBar({
  1. Key? key,
  2. String? title,
  3. Color? backgroundColor,
  4. Widget? child,
})

Implementation

const KntDefaultExpandableAppBar({
  super.key,
  this.title,
  this.backgroundColor,
  this.child,
});