getModule method

AppModule? getModule(
  1. String id
)

Get a module by ID

Implementation

AppModule? getModule(String id) {
  return _modules.firstWhereOrNull((m) => m.id == id);
}