LineElement constructor

LineElement({
  1. ColorAttr? color,
  2. ElevationAttr? elevation,
  3. GradientAttr? gradient,
  4. LabelAttr? label,
  5. Varset? position,
  6. ShapeAttr<LineShape>? shape,
  7. SizeAttr? size,
  8. List<Modifier>? modifiers,
  9. int? layer,
  10. Selected? selected,
  11. StreamController<Selected?>? selectionChannel,
})

Creates a line element.

Implementation

LineElement({
  ColorAttr? color,
  ElevationAttr? elevation,
  GradientAttr? gradient,
  LabelAttr? label,
  Varset? position,
  ShapeAttr<LineShape>? shape,
  SizeAttr? size,
  List<Modifier>? modifiers,
  int? layer,
  Selected? selected,
  StreamController<Selected?>? selectionChannel,
}) : super(
        color: color,
        elevation: elevation,
        gradient: gradient,
        label: label,
        position: position,
        shape: shape,
        size: size,
        modifiers: modifiers,
        layer: layer,
        selected: selected,
        selectionChannel: selectionChannel,
      );