NiceTagCloud constructor

const NiceTagCloud({
  1. Key? key,
  2. required List<NiceTagItem> tags,
  3. void onTagTap(
    1. NiceTagItem tag
    )?,
  4. double minFontSize = 10,
  5. double maxFontSize = 28,
  6. List<String> selectedTags = const [],
})

Implementation

const NiceTagCloud({
  super.key,
  required this.tags,
  this.onTagTap,
  this.minFontSize = 10,
  this.maxFontSize = 28,
  this.selectedTags = const [],
});