custom method

ToolAnnotationBuilder custom(
  1. String key,
  2. dynamic value
)

Add custom annotation

Implementation

ToolAnnotationBuilder custom(String key, dynamic value) {
  _annotations[key] = value;
  return this;
}