getAllByLabel method
Implementation
Future<List<AnkiMapping?>> getAllByLabel(List<String> labelValues) {
final values = labelValues.map((e) => [e]).toList();
return getAllByIndex(r'label', values);
}
Future<List<AnkiMapping?>> getAllByLabel(List<String> labelValues) {
final values = labelValues.map((e) => [e]).toList();
return getAllByIndex(r'label', values);
}