Application constructor

const Application({
  1. required String packageName,
  2. required Category category,
  3. required bool enabled,
})

Implementation

const Application({
  required this.packageName,
  required this.category,
  required this.enabled,
});