CommonAppbarView constructor

const CommonAppbarView({
  1. Key? key,
  2. double? topPadding,
  3. VoidCallback? onBackClick,
  4. String titleText = '',
  5. Widget? backWidget,
  6. IconData? iconData,
})

Implementation

const CommonAppbarView({
  Key? key,
  this.topPadding,
  this.onBackClick,
  this.titleText = '',
  this.backWidget,
  this.iconData,
}) : super(key: key);