To check if a string contains other string in Dart, call contains() method on this string and pass the other string as argument . contains() method returns returns a boolean value of true if this string contains the other string, or false if the this string does not contain other string.
Read more