urlForCurrentSession static method

Future<String?> urlForCurrentSession()

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;
}