queryAllByPlaceholderText
List<
Finds all elements with the given placeholder.
Implementation
List<DomNode> queryAllByPlaceholderText(
String placeholder, {
bool exact = true,
}) => _container.querySelectorAll('[placeholder]').where((el) {
final attr = el.getAttribute('placeholder') ?? '';
return exact ? attr == placeholder : attr.contains(placeholder);
}).toList();