merge method

Merge this with other

Implementation

LineCountIndicatorDecoration merge(LineCountIndicatorDecoration? other) {
  return LineCountIndicatorDecoration(
    widthBuilder: other?.widthBuilder ?? this.widthBuilder,
    lineHeight: other?.lineHeight ?? this.lineHeight,
    textStyle: other?.textStyle ?? this.textStyle,
    textColor: other?.textColor ?? this.textColor,
    backgroundColor: other?.backgroundColor ?? this.backgroundColor,
    scrollPhysics: other?.scrollPhysics ?? this.scrollPhysics,
    rightBorderSide: other?.rightBorderSide ?? this.rightBorderSide,
    alignment: other?.alignment ?? this.alignment,
  );
}