getAll method

List<EasyAttribute<Object?>> getAll(
  1. Set<String> predicate
)

Returns a list of attributes that matches with the keys specified in predicate

Implementation

List<EasyAttribute> getAll(Set<String> predicate) {
  final List<EasyAttribute> styles = <EasyAttribute<Object?>>[];
  for (final key in predicate) {
    if (containsKey(key)) {
      styles.add(this[key]!);
    }
  }
  return styles;
}