TranslateKeysOptions constructor

const TranslateKeysOptions({
  1. required String path,
  2. CaseStyle caseStyle = CaseStyle.titleCase,
  3. String separator = "_",
})

Implementation

const TranslateKeysOptions({required this.path, this.caseStyle = CaseStyle.titleCase, this.separator = "_"}) : assert(path != null);