getCurrentSessionURL static method
Returns the URL to view the current Fullstory session.
If the optional now
parameter is set to true
, the URL will begin the session from the current timestamp rather than the start of the session.
For more information, see https://developer.fullstory.com/mobile/flutter/get-session-details/
Implementation
static Future<String?> getCurrentSessionURL([bool now = false]) {
return FullstoryFlutterPlatform.instance.getCurrentSessionURL(now);
}