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