acceptsContainer method
Implementation
bool acceptsContainer(String containerPath) {
final normalized = ChartJsonOptionPaths.normalizeContainer(containerPath);
return acceptedContainers.any(
(container) =>
ChartJsonOptionPaths.normalizeContainer(container) == normalized,
);
}