getFieldsGroupValuesByPrefix<V> method
Implementation
List<V> getFieldsGroupValuesByPrefix<V>(
String groupPrefix, {
Map<String, String?>? fields,
String keyDelimiter = '_',
String Function(String key)? keyPart,
V? Function(String key)? valueAs,
bool Function(Object key, V? value)? filter,
}) =>
getFieldsGroupEntriesByPrefix(groupPrefix,
fields: fields,
keyDelimiter: keyDelimiter,
keyPart: keyPart,
valueAs: valueAs,
filter: filter)
.map((e) => e.value)
.whereType<V>()
.toList();