Checks if a string includes a substring.
print(includes('ell', 'hello')); // Outputs: true
bool includes(String searchString, String s, [int? position]) => s.contains(searchString, position ?? 0);