pathname property

  1. @override
String get pathname
override

Returns the pathname.

Implementation

@override
String get pathname {
  final match = _atUriRegex.firstMatch(_uri);
  if (match == null) throw FormatException('Invalid at uri: $_uri');

  return match.group(3) ?? '';
}