OpacityAppBar constructor

const OpacityAppBar({
  1. Key? key,
  2. OpacityAppBarCall? call,
  3. String? title,
  4. Color titleColor = const Color(0xff333333),
  5. List<Widget>? actions,
  6. Widget? backIcon,
  7. VoidCallback? backClick,
  8. Color? backgroundColor,
  9. bool enableActionBarGradient = false,
})

Implementation

const OpacityAppBar({
  Key? key,
  this.call,
  this.title,
  this.titleColor = const Color(0xff333333),
  this.actions,
  this.backIcon,
  this.backClick,
  this.backgroundColor,
  this.enableActionBarGradient = false,
}) : super(key: key);