Take the first count characters from this. Ignoring special unicode character handling. This operates on the "pure bytes" only.
count
String take(int count) => substring(0, min(count, length));