AutoFixer constructor

AutoFixer({
  1. required String i18nPath,
  2. String referenceLocale = 'en',
  3. bool dryRun = false,
  4. void onLog(
    1. String message
    )?,
})

Implementation

AutoFixer({
  required this.i18nPath,
  this.referenceLocale = 'en',
  this.dryRun = false,
  this.onLog,
});