filterByKeysFromMapKeys<T, K> method
Implementation
Map<T, K> filterByKeysFromMapKeys<T, K>({
required Map<String, dynamic> keys,
bool isAllowValueNull = true,
}) {
return filterByKeys<T, K>(
keys: keys.keys.toList(),
isAllowValueNull: isAllowValueNull,
);
}