SortIcon constructor

const SortIcon({
  1. Key? key,
  2. required Color color,
  3. required DaviSortDirection direction,
  4. required SortIconSize size,
  5. bool inverted = false,
  6. bool debug = false,
})

Implementation

const SortIcon(
    {Key? key,
    required this.color,
    required this.direction,
    required this.size,
    this.inverted = false,
    this.debug = false})
    : super(key: key);