destructive method

ToolAnnotationBuilder destructive([
  1. bool value = true
])

Mark tool as destructive

Implementation

ToolAnnotationBuilder destructive([bool value = true]) {
  _annotations[ToolAnnotationKeys.destructive] = value;
  return this;
}