Line constructor

Line({
  1. String? content,
  2. int? lineNumber,
})

Implementation

Line({
  this.content,
  this.lineNumber,
});