resolvedModelFilePath method

String? resolvedModelFilePath(
  1. ModelFileRole role
)

Implementation

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