WordCloudTapView constructor

const WordCloudTapView({
  1. Key? key,
  2. required WordCloudData data,
  3. required double mapwidth,
  4. required double mapheight,
  5. required WordCloudTap wordtap,
  6. double mintextsize = 10,
  7. double maxtextsize = 100,
  8. int attempt = 30,
  9. WordCloudShape? shape,
  10. String? fontFamily,
  11. FontStyle? fontStyle,
  12. FontWeight? fontWeight,
  13. Color? mapcolor,
  14. Decoration? decoration,
  15. List<Color>? colorlist,
})

Implementation

const WordCloudTapView({
  super.key,
  required this.data,
  required this.mapwidth,
  required this.mapheight,
  required this.wordtap,
  this.mintextsize = 10,
  this.maxtextsize = 100,
  this.attempt = 30,
  this.shape,
  this.fontFamily,
  this.fontStyle,
  this.fontWeight,
  this.mapcolor,
  this.decoration,
  this.colorlist,
});