GetRoot constructor
const
GetRoot({
- Key? key,
- required ConfigData config,
- 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,
});