allActions property

Set<Action> allActions

Implementation

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