LineInfo constructor

LineInfo({
  1. int width = 0,
  2. int charWidth = 0,
  3. int height = 0,
  4. int startColumn = 0,
  5. int columnOffset = 0,
  6. int rowOffset = 0,
  7. int charOffset = 0,
})

Implementation

LineInfo({
  this.width = 0,
  this.charWidth = 0,
  this.height = 0,
  this.startColumn = 0,
  this.columnOffset = 0,
  this.rowOffset = 0,
  this.charOffset = 0,
});