all method

List<Knob> all()

Implementation

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

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