toPathCase method

String toPathCase([
  1. String separator = '/'
])

Converts the string to path/case.

Implementation

String toPathCase([String separator = '/']) =>
    _extractLowercaseComponents().join(separator);