RBallView constructor

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

Implementation

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