selectedModule property

String? selectedModule

Returns the optional selected module to generate info.

  • The selected module is defined by the apiRequest path at index 1.

Implementation

String? get selectedModule {
  var moduleName = apiRequest?.pathPartAt(1);
  return moduleName != null && moduleName.isNotEmpty ? moduleName : null;
}