IntervalSelection constructor

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

Creates an interval selection.

Implementation

IntervalSelection({
  this.color,
  Dim? dim,
  String? variable,
  Set<GestureType>? clear,
  Set<PointerDeviceKind>? devices,
  int? layer,
}) : super(
        dim: dim,
        variable: variable,
        clear: clear,
        devices: devices,
        layer: layer,
      );