resolvedModelFilePath method
Implementation
String? resolvedModelFilePath(ModelFileRole role) {
for (final artifact in this) {
if (artifact.role == role) {
return artifact.resolvedLocalPath;
}
}
return null;
}
String? resolvedModelFilePath(ModelFileRole role) {
for (final artifact in this) {
if (artifact.role == role) {
return artifact.resolvedLocalPath;
}
}
return null;
}