QuillNumberPoint constructor

const QuillNumberPoint({
  1. required int index,
  2. required Map<int?, int> indentLevelCounts,
  3. required int count,
  4. required TextStyle style,
  5. required double width,
  6. required Map<String, Attribute> attrs,
  7. bool withDot = true,
  8. double padding = 0.0,
  9. Key? key,
})

Implementation

const QuillNumberPoint({
  required this.index,
  required this.indentLevelCounts,
  required this.count,
  required this.style,
  required this.width,
  required this.attrs,
  this.withDot = true,
  this.padding = 0.0,
  Key? key,
}) : super(key: key);