AppScope constructor

AppScope({
  1. required String value,
  2. required String description,
  3. required String type,
  4. required String category,
  5. required bool deprecated,
})

Implementation

AppScope({
  required this.value,
  required this.description,
  required this.type,
  required this.category,
  required this.deprecated,
});