CastDevice constructor

CastDevice({
  1. String? name,
  2. String? type,
  3. String? host,
  4. int? port,
  5. Map<String, Uint8List?>? attr,
})

Implementation

CastDevice({
  this.name,
  this.type,
  this.host,
  this.port,
  this.attr,
}) {
  initDeviceInfo();
}