AppsList constructor

const AppsList({
  1. Key? key,
  2. required Map apps,
  3. required Function callbackItem,
})

Implementation

const AppsList({
  super.key,
  required this.apps,
  required this.callbackItem
});