HeaderView constructor

const HeaderView({
  1. Key? key,
  2. Widget? leftSideIcon,
  3. Widget? rightSideIcon,
  4. Text? header,
  5. Alignment headerAlignment = Alignment.center,
  6. Color? backgroundColor,
  7. bool? backButton = true,
})

Implementation

const HeaderView({
  final Key? key,
  this.leftSideIcon,
  this.rightSideIcon,
  this.header,
  this.headerAlignment = Alignment.center,
  this.backgroundColor,
  this.backButton = true,
}) : super(key: key);