SheetLocalization constructor

const SheetLocalization({
  1. required String docId,
  2. int version = 1,
  3. String outDir = 'resources/langs',
  4. String outName = 'langs.csv',
  5. List<String> preservedKeywords = const [],
})

Implementation

const SheetLocalization({
  required this.docId,
  this.version = 1,
  this.outDir = 'resources/langs',
  this.outName = 'langs.csv',
  this.preservedKeywords = const [],
});