ScreenInspection constructor

const ScreenInspection({
  1. required String name,
  2. required String path,
  3. List<String> imports = const [],
  4. List<String> testIds = const [],
  5. List<String> apis = const [],
  6. List<String> actions = const [],
  7. List<String> navigationTargets = const [],
  8. List<String> storageReferences = const [],
  9. List<String> envReferences = const [],
  10. List<String> lifecycle = const [],
})

Implementation

const ScreenInspection({
  required this.name,
  required this.path,
  this.imports = const [],
  this.testIds = const [],
  this.apis = const [],
  this.actions = const [],
  this.navigationTargets = const [],
  this.storageReferences = const [],
  this.envReferences = const [],
  this.lifecycle = const [],
});