ComponentDependency constructor

ComponentDependency({
  1. required String type,
  2. required String file,
  3. String? message,
})

Implementation

ComponentDependency({
  required this.type,
  required this.file,
  this.message,
});