hash property

  1. @override
String get hash
override

Returns the hash.

Implementation

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

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