getEntriesByName method

List<PerformanceEntry> getEntriesByName(
  1. String name,
  2. String? entryType
)

Implementation

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