sourceLabel property

String get sourceLabel

Implementation

String get sourceLabel {
  if (source == ChartRuntimePerformancePolicySource.fallback) {
    return source.name;
  }
  final path = sourcePath?.trim();
  return path == null || path.isEmpty ? 'json' : path;
}