artifactName property
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);
}
Gets the artifact name, or null if not specified.
String? get artifactName {
final match = RegExp(r'&a=([a-zA-Z0-9._-]+)').firstMatch(uri);
return match?.group(1);
}