staticFieldsWhere method

Iterable<FieldReflection<O, dynamic>> staticFieldsWhere(
  1. bool test(
    1. FieldReflection<O, dynamic> f
    )
)

Returns a List of static fields FieldReflection that matches test.

Implementation

Iterable<FieldReflection<O, dynamic>> staticFieldsWhere(
    bool Function(FieldReflection<O, dynamic> f) test) {
  return allStaticFields().where(test);
}