location property

String location
inherited

Location

Implementation

String get location {
  var path = '/$locationPath';
  final query = locationQuery;
  if (query.isNotEmpty) {
    path += '?$query';
  }
  return path;
}