ComputerUseCapabilities constructor

const ComputerUseCapabilities({
  1. required String hostBundleId,
  2. bool supportsScreenshot = true,
  3. bool supportsClick = true,
  4. bool supportsType = true,
  5. bool supportsKey = true,
  6. bool supportsDrag = true,
  7. bool supportsScroll = true,
  8. bool supportsAppManagement = true,
})

Implementation

const ComputerUseCapabilities({
  required this.hostBundleId,
  this.supportsScreenshot = true,
  this.supportsClick = true,
  this.supportsType = true,
  this.supportsKey = true,
  this.supportsDrag = true,
  this.supportsScroll = true,
  this.supportsAppManagement = true,
});