ToolBarTitleWidget constructor

const ToolBarTitleWidget({
  1. Key? key,
  2. required String? text,
  3. AppBarTextColorType? textColorType = AppBarTextColorType.default_black,
  4. double? width,
  5. VoidCallback? onPressed,
})

Implementation

const ToolBarTitleWidget({
  Key? key,
  required this.text,
  this.textColorType = AppBarTextColorType.default_black,
  this.width,
  this.onPressed,
}) : super(key: key);