toPathCase method

String toPathCase([
  1. String? separator
])

Converts to a lower case, slash separated string

example:

'hello World' -> 'hello/world'

Implementation

String toPathCase([String? separator]) =>
    _fixCase(ChangeCaseType.path, separator);