schemaForField static method
Implementation
static ChartJsonOptionSchema? schemaForField(
String fieldName, {
String? containerPath,
}) {
for (final schema in forField(fieldName, containerPath: containerPath)) {
return schema;
}
return null;
}