to_upper_case 1.0.0
to_upper_case: ^1.0.0 copied to clipboard
descrption for personn who read a description.
example/to_upper_case_example.dart
// example/main.dart
import 'package:to_upper_case/src/to_upper_case.dart';
void main() {
var result = toUpperCaseFirst('hello');
print('Convert first character:$result'); // Hello
}