MainBody constructor

const MainBody({
  1. String? scopePrefix,
  2. required bool isTextSyntax,
  3. required String langName,
  4. required List<String> fileTypes,
  5. required List<Pattern> topLevelPatterns,
  6. required List<RepositoryItem> repository,
})

Implementation

const MainBody({
  this.scopePrefix,
  required this.isTextSyntax,
  required this.langName,
  required this.fileTypes,
  required this.topLevelPatterns,
  required this.repository,
});