ComputerUseInput constructor

ComputerUseInput({
  1. required String action,
  2. List<int>? coordinates,
  3. String? text,
  4. String? key,
  5. String? scrollDirection,
  6. int? scrollAmount,
})

Implementation

ComputerUseInput({
  required this.action,
  this.coordinates,
  this.text,
  this.key,
  this.scrollDirection,
  this.scrollAmount,
});