File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -20,19 +20,19 @@ Logger _logger = Logger();
20
20
/// The options that define the behavior of the [RobotClient] .
21
21
class RobotClientOptions {
22
22
/// Options for connecting to the robot
23
- final DialOptions dialOptions;
23
+ DialOptions dialOptions;
24
24
25
25
/// The frequency (in seconds) at which to check if the robot is still connected. 0 (zero) signifies no connection checks
26
- final checkConnectionInterval = 10 ;
26
+ int checkConnectionInterval = 10 ;
27
27
28
28
/// The frequency (in seconds) at which to attempt to reconnect a disconnected robot. 0 (zero) signifies no reconnection attempts
29
- final attemptReconnectInterval = 1 ;
29
+ int attemptReconnectInterval = 1 ;
30
30
31
31
/// Whether sessions are enabled
32
- final enableSessions = true ;
32
+ bool enableSessions = true ;
33
33
34
34
/// The log level desired
35
- final Level logLevel = Level .debug;
35
+ Level logLevel = Level .debug;
36
36
37
37
RobotClientOptions () : dialOptions = DialOptions ();
38
38
You can’t perform that action at this time.
0 commit comments