PermissionDescriptor constructor

PermissionDescriptor({
  1. required String name,
  2. bool? sysex,
  3. bool? userVisibleOnly,
  4. bool? allowWithoutSanitization,
  5. bool? panTiltZoom,
})

Implementation

PermissionDescriptor(
    {required this.name,
    this.sysex,
    this.userVisibleOnly,
    this.allowWithoutSanitization,
    this.panTiltZoom});