TopicTreeView constructor

const TopicTreeView({
  1. Key? key,
  2. required String domainSlug,
  3. String? domainName,
  4. bool embedded = false,
  5. FamilyGroup? family,
  6. void onSelectVariant(
    1. String family,
    2. String variant,
    3. String domainId
    )?,
  7. String? currentUserId,
})

Implementation

const TopicTreeView({
  super.key,
  required this.domainSlug,
  this.domainName,
  this.embedded = false,
  this.family,
  this.onSelectVariant,
  this.currentUserId,
});