Computer constructor

Computer(
  1. String vendor,
  2. String product, {
  3. List<ComputerTransport> transports = const [],
})

Implementation

Computer(this.vendor, this.product, {this.transports = const []});