PointSelection constructor

PointSelection({
  1. bool? toggle,
  2. bool? nearest,
  3. double? testRadius,
  4. Dim? dim,
  5. String? variable,
  6. Set<GestureType>? on,
  7. Set<GestureType>? clear,
  8. Set<PointerDeviceKind>? devices,
  9. int? layer,
})

Creates a point selection.

Implementation

PointSelection({
  this.toggle,
  this.nearest,
  this.testRadius,
  Dim? dim,
  String? variable,
  Set<GestureType>? on,
  Set<GestureType>? clear,
  Set<PointerDeviceKind>? devices,
  int? layer,
}) : super(
        dim: dim,
        variable: variable,
        on: on,
        clear: clear,
        devices: devices,
        layer: layer,
      );