forContainer static method

List<ChartJsonOptionSchema> forContainer(
  1. String containerPath
)

Implementation

static List<ChartJsonOptionSchema> forContainer(String containerPath) {
  return [
    for (final schema in all)
      if (schema.acceptsContainer(containerPath)) schema,
  ];
}