isNotStartsWith method

  1. @useResult
bool isNotStartsWith(
  1. String? find
)

Returns true if this string does NOT start with find.

Implementation

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

  return !startsWith(find);
}