trackScreenName static method
Manually tracks a screen name for identification.
While view controllers are automatically defined as screens by the DevRev SDK, there might be cases when you need to manually track certain screens. This function allows you to manually track the screens that will be missed during the auto-capture process.
@param screenName A string value of the screen name.
Implementation
static Future<void> trackScreenName(String screenName) {
return DevRevSDKPlatform.instance.trackScreenName(screenName);
}