hasContainsProperty function
Check if a value has a contains property.
Implementation
bool hasContainsProperty(dynamic value) {
return value is String || value is Iterable || value is Set;
}
Check if a value has a contains property.
bool hasContainsProperty(dynamic value) {
return value is String || value is Iterable || value is Set;
}