ExtractedKey constructor

const ExtractedKey({
  1. required String key,
  2. required String filePath,
  3. required int line,
  4. required int column,
  5. required I18nCallType callType,
  6. Set<String> placeholders = const {},
  7. bool isPlural = false,
  8. String? snippet,
})

Implementation

const ExtractedKey({
  required this.key,
  required this.filePath,
  required this.line,
  required this.column,
  required this.callType,
  this.placeholders = const {},
  this.isPlural = false,
  this.snippet,
});