readOnly method

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

Mark tool as read-only

Implementation

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