isNotStartsWith method

bool isNotStartsWith(
  1. String? find
)

Returns true if this string does NOT start with find.

Implementation

bool isNotStartsWith(String? find) {
  if (isEmpty || find == null || find.isEmpty) return false;
  return !startsWith(find);
}