currentScreen property
The current screen.
Implementation
@override
String get currentScreen
=> _currentScreen;
The current screen.
Implementation
@override
set currentScreen(String newValue)
{
logger.logInfo((_isEnabled ? 'GoogleAnalytics' : 'Disabled-GoogleAnalytics') + ': setCurrentScreen: ' + newValue);
_currentScreen = newValue;
if (_isEnabled)
_firebaseAnalytics.setCurrentScreen(screenName: newValue, screenClassOverride: newValue);
}