TVDevice constructor

TVDevice({
  1. required String name,
  2. required String hostname,
  3. required String ipAddress,
  4. required int port,
})

Implementation

TVDevice({
  required this.name,
  required this.hostname,
  required this.ipAddress,
  required this.port,
});