AppTitleTool constructor

const AppTitleTool({
  1. String hookName = '',
  2. int order = 0,
  3. required String title,
  4. String? subTitle,
  5. String? toolTip,
  6. Widget? icon,
  7. IconData? iconData,
  8. ActionCallback? onPressed,
  9. bool enabled = true,
})

Implementation

const AppTitleTool({
  String hookName = '',
  this.order = 0,
  required super.title,
  super.subTitle,
  super.toolTip,
  super.icon,
  super.iconData,
  super.onPressed,
  super.enabled,
}) : _hookName = hookName;