LineNumberStyle constructor

const LineNumberStyle({
  1. double width = 42.0,
  2. TextAlign textAlign = TextAlign.right,
  3. double margin = 10.0,
  4. TextStyle? textStyle,
  5. Color? background,
})

Implementation

const LineNumberStyle({
  this.width = 42.0,
  this.textAlign = TextAlign.right,
  this.margin = 10.0,
  this.textStyle,
  this.background,
});