activePath property

String activePath

Implementation

String get activePath {
  final address = activeServer.split(':')[1].substring('//'.length);
  final path =
      address.contains('/') ? address.substring(address.indexOf('/')) : '/';

  return path.endsWith('/') ? path : '$path/';
}