NamedLine constructor

const NamedLine({
  1. required String name,
  2. required Expression expression,
  3. Paint? paint,
  4. String? father,
  5. bool isGroup = false,
})

Implementation

const NamedLine({required this.name, required this.expression, this.paint, this.father, this.isGroup = false});