NASDeviceInfo constructor

NASDeviceInfo({
  1. required String serviceName,
  2. required String serviceType,
  3. required String sn,
  4. String? target,
  5. required int port,
  6. required String ipAddress,
  7. String? macAddress,
  8. String? remoteId,
  9. required Map<String, String> txtRecords,
})

Implementation

NASDeviceInfo({
  required this.serviceName,
  required this.serviceType,
  required this.sn,
  this.target,
  required this.port,
  required this.ipAddress,
  this.macAddress,
  this.remoteId,
  required this.txtRecords,
});