GetRoot constructor

const GetRoot({
  1. Key? key,
  2. required ConfigData config,
  3. required Widget child,
})

Constructs a GetRoot widget.

The config parameter specifies the configuration data for the application. The child parameter specifies the child widget to be rendered within the application.

Implementation

const GetRoot({
  super.key,
  required this.config,
  required this.child,
});