Target constructor

Target({
  1. required String name,
  2. required String srcPath,
  3. required List<String> kind,
})

Implementation

Target({
  required this.name,
  required this.srcPath,
  required this.kind,
});