vn_badwords_filter 1.0.1 vn_badwords_filter: ^1.0.1 copied to clipboard
A package to filter bad words in Vietnamese.
example/vn_badwords_filter_example.dart
import 'package:vn_badwords_filter/vn_badwords_filter.dart';
void main() {
print(VNBadwordsFilter.isProfane("hello")); // false
print(VNBadwordsFilter.isProfane("vcl")); // true
print(VNBadwordsFilter.clean("hello vcl")); // hello ***
}