ConvertCase class

Main Convert Case Class

All methods are static and can be called without initializing

Constructors

ConvertCase.new()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

toAlternatingCase(String input) String
Converts string to AlTeRnAtInG CaSe
toInverseCase(String input) String
Converts string to iNVERSE cASE
toLowerCase(String input) String
Converts string to lower case
toSentenceCase(String input) String
Converts string to Sentence case
toTitleCase(String input) String
Converts string to Title Case
toUpperCase(String input) String
Converts string to UPPER CASE