acceptsContainer method

bool acceptsContainer(
  1. String containerPath
)

Implementation

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