Line constructor

Line({
  1. String? lineCategory,
  2. LineProperties? lineProperties,
  3. String? lineType,
})

Implementation

Line({
  this.lineCategory,
  this.lineProperties,
  this.lineType,
});