dart_profanity 1.0.1 copy "dart_profanity: ^1.0.1" to clipboard
dart_profanity: ^1.0.1 copied to clipboard

This package censores profanity in String sequences and delivers some censor options for your needs.

example/dart_profanity_example.dart

import 'package:dart_profanity/dart_profanity.dart';

void main() {
  final profanity = Profanity();
  final result = profanity.censor(
    'FuckYou assfuckerAsshole and pUSSy!',
    bleepType: CensorBleepType.asterisk,
    censorType: CensorType.firstLetter,
  );
  print('result: $result');

  //final profanity = Profanity(languages: ['de', 'en', 'gg']);
  //final censored = profanity.censor('Du bist ein mega Arschloch & DuWichser.');
  //print('censored0: $censored');

  //final censored1 = profanity.censor('Du bist ein mega Arschloch & DuWichser.');
  //print('censored1: $censored1');

  //final dartProfanity2 = Profanity();
  //final censored2 = dartProfanity2.censor('Du bist ein mega arschloch & DuAsS!');
  //print('censored2: $censored2');

  //final censored3 = dartProfanity2.censor(
  //  'Du bist ein mega arschloch & DuAsS!',
  //  censorType: CensorType.firstLetter,
  //);
  //print('censored3: $censored3');
}
2
likes
160
points
40
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

This package censores profanity in String sequences and delivers some censor options for your needs.

Homepage
Repository (GitHub)
View/report issues

License

MIT (license)

More

Packages that depend on dart_profanity