isExperimental static method

bool isExperimental(
  1. Map<String, dynamic>? annotations
)

Check if a tool is experimental

Implementation

static bool isExperimental(Map<String, dynamic>? annotations) {
  return annotations?[ToolAnnotationKeys.experimental] == true;
}