urlForCurrentSession static method
This method will return url for current session to be uploaded
Implementation
static Future<String?> urlForCurrentSession() async {
final String? url =
await _channel.invokeMethod<String>('urlForCurrentSession');
return url;
}