getTodos method

List<TodoItem> getTodos(
  1. String key
)

Get todos for a key.

Implementation

List<TodoItem> getTodos(String key) =>
    List.unmodifiable(_store[key] ?? const []);