globalActivate method Null safety
- @Deprecated('Use PubCache().globalActivate')
- String package
@Deprecated('Use PubCache().globalActivate')
Run dart pub global activate on the given package
.
Implementation
@Deprecated('Use PubCache().globalActivate')
void globalActivate(String package) {
runPub(
args: ['global', 'activate', package],
progress: Progress.printStdErr(),
);
}