build method

  1. @override
Widget build(
  1. BuildContext context
)

Builds the main widget for this module.

This method is called when the module needs to be displayed and should return the root widget for the module's UI.

Parameters:

  • context - Build context for creating the widget

Returns: The root widget for this module

Implementation

@override
Widget build(BuildContext context) {
  return const ModulesInspectorView();
}