Tracker constructor
Tracker({
- Widget? rootWidget,
- void runAppFunction()?,
- TrackerOptions? releaseConfig,
- TrackerOptions? debugConfig,
- TrackerOptions? profileConfig,
- bool enableLogger = true,
- bool ensureInitialized = false,
Builds Tracker instance
Implementation
Tracker({
this.rootWidget,
this.runAppFunction,
this.releaseConfig,
this.debugConfig,
this.profileConfig,
this.enableLogger = true,
this.ensureInitialized = false,
GlobalKey<NavigatorState>? navigatorKey,
}) : assert(
rootWidget != null || runAppFunction != null,
"You need to provide rootWidget or runAppFunction",
) {
_configure(navigatorKey);
}