IdeLockfileInfo constructor

const IdeLockfileInfo({
  1. required List<String> workspaceFolders,
  2. required int port,
  3. int? pid,
  4. String? ideName,
  5. bool useWebSocket = false,
  6. bool runningInWindows = false,
  7. String? authToken,
})

Implementation

const IdeLockfileInfo({
  required this.workspaceFolders,
  required this.port,
  this.pid,
  this.ideName,
  this.useWebSocket = false,
  this.runningInWindows = false,
  this.authToken,
});