filter_profanity 1.0.0+1
filter_profanity: ^1.0.0+1 copied to clipboard
Dart package to recognize if provided string contains offensive words.
example/lib/main.dart
import 'package:filter_profanity/filter_profanity.dart';
import 'package:flutter/foundation.dart';
void main() {
if (kDebugMode) {
print(hasProfanity('putin'));
}
}