artifactName property

String? get artifactName

Gets the artifact name, or null if not specified.

Implementation

String? get artifactName {
  final match = RegExp(r'&a=([a-zA-Z0-9._-]+)').firstMatch(uri);
  return match?.group(1);
}