getAllByName method
Implementation
Future<List<Dictionary?>> getAllByName(List<String> nameValues) {
final values = nameValues.map((e) => [e]).toList();
return getAllByIndex(r'name', values);
}
Future<List<Dictionary?>> getAllByName(List<String> nameValues) {
final values = nameValues.map((e) => [e]).toList();
return getAllByIndex(r'name', values);
}