basePath property

  1. @override
String get basePath
override

The base path of the application.

Implementation

@override
String get basePath {
  final path = Uri.parse(_baseOrigin).path;
  return path.isEmpty ? '/' : path;
}