UnSliverAppBar constructor Null safety

const UnSliverAppBar(
  1. {Key? key,
  2. String? emoji,
  3. required Widget title,
  4. Widget? description,
  5. bool implyLeading = true,
  6. Widget? leading,
  7. Widget? trailing,
  8. bool isImmersive = false,
  9. bool isCollapseCentered = true}
)

Implementation

const UnSliverAppBar({
  super.key,
  this.emoji,
  required this.title,
  this.description,
  this.implyLeading = true,
  this.leading,
  this.trailing,
  this.isImmersive = false,
  this.isCollapseCentered = true,
});