entityFieldsNamesWhere method
Iterable<String>
entityFieldsNamesWhere(
- bool test(
- FieldReflection<
O, dynamic> f
- FieldReflection<
- O? obj,
- bool jsonName = false
Returns a List of fields names that matches test
.
Implementation
Iterable<String> entityFieldsNamesWhere(
bool Function(FieldReflection<O, dynamic> f) test,
[O? obj,
bool jsonName = false]) {
return entityFields(obj).where(test).map((e) => e.resolveName(jsonName));
}