bool startsWithIgnoreCase(String value) { if (this == null) return false; return this!.toLowerCase().startsWith(value.toLowerCase()); }