DetectionResultBase constructor

const DetectionResultBase({
  1. required String language,
  2. required num score,
  3. required bool translationSupported,
  4. required bool transliterationSupported,
})

Implementation

const DetectionResultBase({
  required this.language,
  required this.score,
  required this.translationSupported,
  required this.transliterationSupported,
});