pubspec.yaml文件中添加依赖项:
dependencies:
flutter_language_detection: ^1.0.0
flutter pub get
import 'package:flutter_language_detection/flutter_language_detection.dart';
void main() async {
final languageDetector = LanguageDetector();
final detectedLanguage = await languageDetector.detectLanguage('your text here');
print('Detected language: ${detectedLanguage.language}');
}