Og1AppBar constructor

const Og1AppBar({
  1. Key? key,
  2. String? title,
  3. Widget? leading,
  4. List<Widget>? actions,
  5. bool transparent = true,
  6. Color? backgroundColor,
  7. Widget? flexibleSpace,
  8. double? elevation,
  9. double? titleSpacing,
})

Implementation

const Og1AppBar({
  Key? key,
  this.title,
  this.leading,
  this.actions,
  this.transparent = true,
  this.backgroundColor,
  this.flexibleSpace,
  this.elevation,
  this.titleSpacing,
})  : preferredSize = const Size.fromHeight(50.0),
      super(key: key);