profanity_detector 1.2.4
profanity_detector: ^1.2.4 copied to clipboard
Profanity word detector
profanity_detector #
Profanity word detector
Detector is fine for searching red words in sentences.
/// Usage example
import 'package:profanity_detector/profanity_detector.dart';
void main() {
bool isDetectedProfanity =
ProfanityDetector.hasProfanity(text: 'Genuine, my ass! ');
print('isDetectedProfanity: $isDetectedProfanity'); // true
}