AppBarWidget constructor

const AppBarWidget({
  1. String title = "",
  2. Color bgColor = Colors.blue,
  3. Color titleColor = Colors.white,
  4. String fontFamily = "",
  5. double titleSize = 14,
  6. Key? key,
})

Implementation

const AppBarWidget(
    {this.title = "",
    this.bgColor = Colors.blue,
    this.titleColor = Colors.white,
    this.fontFamily = "",
    this.titleSize = 14,
    Key? key})
    : super(key: key);