Returns true if this string does NOT start with find.
find
bool isNotStartsWith(String? find) { if (isEmpty || find == null || find.isEmpty) return false; return !startsWith(find); }