To uppercase first letter of the word

Install

Dart

dart pub add string_capitalize

Flutter

flutter pub add string_capitalize

Methods

String

  • capitalize method does transform first letter a uppercase of the String or returns empty String;

  • capitalizeOrFail method does transform first letter a uppercase of the String or returns an exception;

  • capitalizeEach method does transform all first letter a uppercase of words of the String or returns empty String;

  • capitalizeEachOrFail method does transform all first letter a uppercase of words of the String or returns an exception;

  • startsWithCapital method verify if the String starts with with a capital letter.

List

  • capitalize - make first letter to capital to all items of String list.

Libraries

string_capitalize