InitializeRequestArguments constructor

InitializeRequestArguments({
  1. required String adapterID,
  2. String? clientID,
  3. String? clientName,
  4. bool? columnsStartAt1,
  5. bool? linesStartAt1,
  6. String? locale,
  7. String? pathFormat,
  8. bool? supportsArgsCanBeInterpretedByShell,
  9. bool? supportsInvalidatedEvent,
  10. bool? supportsMemoryEvent,
  11. bool? supportsMemoryReferences,
  12. bool? supportsProgressReporting,
  13. bool? supportsRunInTerminalRequest,
  14. bool? supportsStartDebuggingRequest,
  15. bool? supportsVariablePaging,
  16. bool? supportsVariableType,
})

Implementation

InitializeRequestArguments({
  required this.adapterID,
  this.clientID,
  this.clientName,
  this.columnsStartAt1,
  this.linesStartAt1,
  this.locale,
  this.pathFormat,
  this.supportsArgsCanBeInterpretedByShell,
  this.supportsInvalidatedEvent,
  this.supportsMemoryEvent,
  this.supportsMemoryReferences,
  this.supportsProgressReporting,
  this.supportsRunInTerminalRequest,
  this.supportsStartDebuggingRequest,
  this.supportsVariablePaging,
  this.supportsVariableType,
});