PlatformCapabilities constructor

const PlatformCapabilities({
  1. bool hasFileSystem = true,
  2. bool hasProcessSpawn = true,
  3. bool hasStdin = true,
  4. bool hasClipboard = true,
  5. bool hasNotifications = true,
  6. bool hasWindowManagement = true,
  7. bool hasTouchInput = false,
  8. bool hasKeyboard = true,
  9. bool hasVoiceInput = false,
  10. bool hasBiometrics = false,
})

Implementation

const PlatformCapabilities({
  this.hasFileSystem = true,
  this.hasProcessSpawn = true,
  this.hasStdin = true,
  this.hasClipboard = true,
  this.hasNotifications = true,
  this.hasWindowManagement = true,
  this.hasTouchInput = false,
  this.hasKeyboard = true,
  this.hasVoiceInput = false,
  this.hasBiometrics = false,
});