supportsProgress static method

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

Check if a tool supports progress

Implementation

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