ToolProgressIndicator constructor

const ToolProgressIndicator({
  1. Key? key,
  2. required String toolName,
  3. String? description,
})

Implementation

const ToolProgressIndicator({
  super.key,
  required this.toolName,
  this.description,
});