all method

List<Knob> all()

Implementation

List<Knob<dynamic>> all() {
  final story = _storyNotifier.currentStory;
  if (story == null) return [];

  final String? routeStoryName = _storyNotifier.storyRouteName;

  return _knobs[routeStoryName ?? story.name]?.values.toList() ?? [];
}