bool equals(String? input, {bool ignoreCase = true}) { return isNotNullOrEmpty ? !ignoreCase ? this == input : this?.toLowerCase() == "$input".toLowerCase() : false; }