AppsList constructor

AppsList({
  1. required int total,
  2. required List<App> apps,
})

Implementation

AppsList({
  required this.total,
  required this.apps,
});