flutter_ap_style 1.0.0
flutter_ap_style: ^1.0.0 copied to clipboard
A Dart package to convert text to AP (Associated Press) style title case
example/flutter_ap_style_example.dart
import 'package:flutter_ap_style/flutter_ap_style.dart';
void main() {
final apStyle = AssociatedPressStyle();
print(apStyle.toAssociatedPressStyle("why sunless tanning is A hot trend"));
// 'Why Sunless Tanning Is a Hot Trend'
}