GeneratedEntry constructor

const GeneratedEntry({
  1. required GeneratedEntryType type,
  2. required String path,
  3. required String content,
  4. bool rootRelative = false,
  5. bool writeIfMissing = false,
})

Creates a generated entry descriptor.

Implementation

const GeneratedEntry({
  required this.type,
  required this.path,
  required this.content,
  this.rootRelative = false,
  this.writeIfMissing = false,
});