NetworkProtocol constructor

NetworkProtocol({
  1. required String name,
  2. required bool enabled,
  3. required int port,
})

Implementation

NetworkProtocol({
  required this.name,
  required this.enabled,
  required this.port,
});