GetRoot<T> constructor

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

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({
  required this.config,
  required this.child,
  super.key,
});