toSlug static method

String toSlug(
  1. String string
)

Convert string into slug

Implementation

static String toSlug(String string) =>
    string.trim().toLowerCase().replaceAll(" ", "-");