supportedSpecs property

List<ChartApiFieldSpec> get supportedSpecs

Implementation

List<ChartApiFieldSpec> get supportedSpecs {
  final specs = <ChartApiFieldSpec>[];
  for (final field in supportedFields) {
    final spec = ChartApiFields.specFor(field);
    if (spec != null) specs.add(spec);
  }
  return specs;
}