getRemoteSessionUrl function

String getRemoteSessionUrl(
  1. String sessionId, {
  2. String? ingressUrl,
})

Get the remote session URL.

Implementation

String getRemoteSessionUrl(String sessionId, {String? ingressUrl}) {
  final base = ingressUrl ?? 'https://neomage.ai';
  return '$base/code/session/$sessionId';
}