toSpongeCase method

String toSpongeCase()

Converts to a string with every character randomly lowercased/capitalized

example:

'hello world' -> 'hElLo wOrLd'

Implementation

String toSpongeCase() => _fixCase(ChangeCaseType.sponge);