profanity_detector 1.0.2
profanity_detector: ^1.0.2 copied to clipboard
Profanity word detector
example/profanity_detector_example.dart
import 'package:profanity_detector/profanity_detector.dart';
void main() {
bool isDetectedProfanity =
ProfanityDetector.hasProfanity(text: 'You are an a_s_s ');
print('isDetectedProfanity: $isDetectedProfanity');
}