AppListItem constructor

const AppListItem({
  1. Key? key,
  2. String? topLabel,
  3. required String label,
  4. IconData? leadingIcon,
})

Implementation

const AppListItem({
  super.key,
  this.topLabel,
  required this.label,
  this.leadingIcon,
});