MirrorCapabilities constructor

const MirrorCapabilities({
  1. required bool canDetectMirroring,
  2. required bool canDetectExternalDisplay,
  3. required bool canDetectScreenSharing,
  4. required String platform,
  5. required String notes,
})

Creates a MirrorCapabilities with the given values.

Implementation

const MirrorCapabilities({
  required this.canDetectMirroring,
  required this.canDetectExternalDisplay,
  required this.canDetectScreenSharing,
  required this.platform,
  required this.notes,
});