HooksEntry constructor

const HooksEntry({
  1. required String filePath,
  2. bool hasOnStart = false,
  3. bool hasOnStop = false,
  4. bool hasOnError = false,
})

Creates hooks metadata.

Implementation

const HooksEntry({
  required this.filePath,
  this.hasOnStart = false,
  this.hasOnStop = false,
  this.hasOnError = false,
});