Bandwidth constructor

Bandwidth({
  1. int? downloadSpeed,
  2. int? uploadSpeed,
})

Implementation

Bandwidth({
  this.downloadSpeed,
  this.uploadSpeed,
});