LLAppBar constructor

const LLAppBar({
  1. Key? key,
  2. Widget? leading,
  3. Widget? title,
  4. Widget? trailing,
})

Implementation

const LLAppBar({
  super.key,
  this.leading,
  this.title,
  this.trailing,
});