Rustup constructor

Rustup({
  1. required String executablePath,
  2. String? rustupHome,
  3. String? cargoHome,
  4. Logger? logger,
})

Implementation

Rustup({
  required this.executablePath,
  this.rustupHome,
  this.cargoHome,
  this.logger,
});