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