modelFiles property

List<String> get modelFiles

Get all model file paths

Implementation

List<String> get modelFiles {
  if (serverPath == null) return [];
  final models = SpyYamlParser.parseAll(serverPath!);
  return models.map((m) => m.filePath).toList();
}