DetectedString constructor

const DetectedString({
  1. required String value,
  2. required int line,
  3. required int column,
  4. required int confidence,
  5. required StringCategory category,
  6. required String context,
  7. required bool hasInterpolation,
  8. required bool isPlural,
  9. required String snippet,
})

Implementation

const DetectedString({
  required this.value,
  required this.line,
  required this.column,
  required this.confidence,
  required this.category,
  required this.context,
  required this.hasInterpolation,
  required this.isPlural,
  required this.snippet,
});