WebSocketTestDeviceCommunicator constructor
WebSocketTestDeviceCommunicator({})
Implementation
WebSocketTestDeviceCommunicator({
this.maxConnectionTime = const Duration(minutes: 30),
this.pingTime = const Duration(seconds: 30),
this.reconnectDelay = const Duration(seconds: 1),
required String secret,
required TestControllerState testControllerState,
required this.url,
}) : assert(secret.isNotEmpty == true),
_secret = secret,
_testControllerState = testControllerState;