owoify_dart 2.1.0 owoify_dart: ^2.1.0 copied to clipboard
Turning your worst nightmare into a Dart package. This is a Dart port of mohan-cao's owoify-js, which will help you turn any string into nonsensical babyspeaks.
example/owoify_dart_example.dart
import 'package:owoify_dart/owoify_dart.dart';
void main() {
print(Owoifier.owoify('This is the string to owo! Kinda cute isn\'t it?'));
print(Owoifier.owoify('This is the string to owo! Kinda cute isn\'t it?',
level: OwoifyLevel.Uvu));
print(
Owoifier.owoify('Yoichi is no one\'s favorite.', level: OwoifyLevel.Uvu));
}