Selection constructor

Selection(
  1. {Dim? dim,
  2. String? variable,
  3. Set<GestureType>? on,
  4. Set<GestureType>? clear,
  5. Set<PointerDeviceKind>? devices,
  6. int? layer}
)

Creates a selection.

Implementation

Selection({
  this.dim,
  this.variable,
  this.on,
  this.clear,
  this.devices,
  this.layer,
});