FcSortButton constructor

const FcSortButton({
  1. Key? key,
  2. required Callback<FcSortOrder?> onPressed,
  3. String text = '',
  4. bool hasSort = true,
  5. bool highlight = false,
  6. FcSortOrder? order,
})

Implementation

const FcSortButton({
  Key? key,
  required this.onPressed,
  this.text = '',
  this.hasSort = true,
  this.highlight = false,
  this.order
}) : super(key: key);