addLogToList static method

void addLogToList(
  1. String key,
  2. LogEntry entry
)

Implementation

static void addLogToList(String key, LogEntry entry) {
  final next = Map<String, LogEntry>.from(listLogNotifier.value);
  next[key] = entry;
  listLogNotifier.value = next; // triggers listeners
}