RBallView constructor

const RBallView({
  1. Key? key,
  2. required MediaQueryData mediaQueryData,
  3. required List<RBallTagData> keywords,
  4. required List<RBallTagData> highlight,
  5. int maxChar = 8,
  6. dynamic onTapRBallTagCallback(
    1. RBallTagData
    )?,
  7. bool isAnimate = true,
  8. bool isAllowScale = true,
  9. required bool isAllowNext,
  10. bool isShowLine = false,
  11. Decoration? decoration,
  12. bool isShowDecoration = false,
  13. List<double>? centers,
  14. int? radius,
  15. Color? textColor,
  16. Color? highLightTextColor,
  17. RBallController? controller,
})

Implementation

const RBallView({
  Key? key,
  required this.mediaQueryData,
  required this.keywords,
  required this.highlight,
  this.maxChar = 8,
  this.onTapRBallTagCallback,
  this.isAnimate = true,
  this.isAllowScale = true,
  required this.isAllowNext,
  this.isShowLine = false,
  this.decoration,
  this.isShowDecoration = false,
  this.centers,
  this.radius,
  this.textColor,
  this.highLightTextColor,
  this.controller,
}) : super(key: key);