getEntriesByName method
Implementation
List<PerformanceEntry> getEntriesByName(String name, String? entryType) {
if (this is _PerformanceImpl) {
return (this as _PerformanceImpl).getEntriesByName(name, entryType);
}
return const <PerformanceEntry>[];
}