forField static method
Implementation
static List<ChartJsonOptionSchema> forField(
String fieldName, {
String? containerPath,
}) {
final schemas = containerPath == null ? all : forContainer(containerPath);
return [
for (final schema in schemas)
if (schema.supportsField(fieldName)) schema,
];
}