WordCloudSetting constructor

WordCloudSetting({
  1. Key? key,
  2. required List<Map> data,
  3. required double minTextSize,
  4. required double maxTextSize,
  5. required int attempt,
  6. required WordCloudShape shape,
})

Implementation

WordCloudSetting({
  Key? key,
  required this.data,
  required this.minTextSize,
  required this.maxTextSize,
  required this.attempt,
  required this.shape,
});