toSpongeCase method
Converts to a string with every character randomly lowercased/capitalized
example:
'hello world' -> 'hElLo wOrLd'
Implementation
String toSpongeCase() => _fixCase(ChangeCaseType.sponge);
Converts to a string with every character randomly lowercased/capitalized
example:
'hello world' -> 'hElLo wOrLd'
String toSpongeCase() => _fixCase(ChangeCaseType.sponge);