Line constructor

Line({
  1. Object? data,
  2. Map<String, dynamic>? attributes,
})

Constructs a Line instance with optional initial data and attributes.

Implementation

Line({
  this.data,
  this.attributes,
});