loadLabels function
Implementation
Future<List<String>> loadLabels(String labelsPath) async {
final labelsData = await rootBundle.loadString(labelsPath);
final labels = const LineSplitter().convert(labelsData);
debugPrint('Rótulos carregados de $labelsPath');
return labels;
}