flagsForModule method

List<NiceFeatureFlag> flagsForModule(
  1. String moduleId
)

Get all flags for a module.

Implementation

List<NiceFeatureFlag> flagsForModule(String moduleId) =>
    _flags.values.where((f) => f.moduleId == moduleId).toList();