CLDestination constructor

const CLDestination({
  1. required String key,
  2. required String label,
  3. IconData? icon,
  4. Widget? iconBuilder(
    1. Color color,
    2. double size
    )?,
  5. List<CLDestination> children = const [],
  6. int priority = 0,
  7. bool isVisible = true,
  8. bool isSectionHeader = false,
  9. Color? tint,
})

Implementation

const CLDestination({
  required this.key,
  required this.label,
  this.icon,
  this.iconBuilder,
  this.children = const [],
  this.priority = 0,
  this.isVisible = true,
  this.isSectionHeader = false,
  this.tint,
});