getAllByName method

Future<List<Dictionary?>> getAllByName(
  1. List<String> nameValues
)

Implementation

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