convert_case 1.0.3 copy "convert_case: ^1.0.3" to clipboard
convert_case: ^1.0.3 copied to clipboard

Easily convert case of strings

example/example.dart

import 'package:convert_case/convert_case.dart';

void main() {
  String myString = "Just a regular non-nullable string";

  print(ConvertCase.toLowerCase(myString));
  print(ConvertCase.toUpperCase(myString));
  print(ConvertCase.toAlternatingCase(myString));
  print(ConvertCase.toInverseCase(myString));
  print(ConvertCase.toSentenceCase(myString));
  print(ConvertCase.toTitleCase(myString));
}