LineCountIndicatorDecoration constructor

LineCountIndicatorDecoration({
  1. WidthBuilderCallback? widthBuilder,
  2. TextStyle? textStyle,
  3. Color textColor = Colors.white,
  4. double? lineHeight,
  5. Color? backgroundColor,
  6. ScrollPhysics scrollPhysics = const ClampingScrollPhysics(),
  7. BorderSide? rightBorderSide,
  8. AlignmentGeometry? alignment,
  9. EdgeInsetsGeometry? padding,
})

The decoration which will be applied to LineCountIndicator

Implementation

LineCountIndicatorDecoration({
  this.widthBuilder,
  this.textStyle,
  this.textColor = Colors.white,
  this.lineHeight,
  this.backgroundColor,
  this.scrollPhysics = const ClampingScrollPhysics(),
  this.rightBorderSide,
  this.alignment,
  this.padding,
});