allActions property

Set<Action> get allActions

Implementation

Set<Action> get allActions => Set<Action>.from(
  actions.toList()
    ..addAll(inherited.map((ac) => ac.actions).expand((a) => a)),
);