ToolBarTool constructor

const ToolBarTool({
  1. required String title,
  2. required String subTitle,
  3. required Widget icon,
  4. required void onPressed(),
  5. Key? key,
})

Implementation

const ToolBarTool(
    {required this.title,
    required this.subTitle,
    required this.icon,
    required this.onPressed,
    super.key});