WordCloudView constructor

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

Implementation

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