CockpitRemoteSessionConfiguration constructor

const CockpitRemoteSessionConfiguration({
  1. required bool enabled,
  2. bool autoStart = true,
  3. String host = '127.0.0.1',
  4. int port = 47331,
  5. String routePrefix = '',
  6. String launchId = '',
})

Creates a CockpitRemoteSessionConfiguration.

Implementation

const CockpitRemoteSessionConfiguration({
  required this.enabled,
  this.autoStart = true,
  this.host = '127.0.0.1',
  this.port = 47331,
  this.routePrefix = '',
  this.launchId = '',
});