getCategory static method

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

Get tool category

Implementation

static String? getCategory(Map<String, dynamic>? annotations) {
  return annotations?[ToolAnnotationKeys.category] as String?;
}