isNotStartsWith method

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

Returns true if this string does NOT start with find. Audited: 2026-06-12 11:26 EDT

Implementation

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

  return !startsWith(find);
}