ChevronDown constructor

const ChevronDown({
  1. Key? key,
  2. double iconSize = 8.0,
  3. IconData icon = FluentIcons.chevron_down,
  4. Color? iconColor,
})

Creates a chevron down icon.

Implementation

const ChevronDown({
  super.key,
  this.iconSize = 8.0,
  this.icon = FluentIcons.chevron_down,
  this.iconColor,
});