getAllByLabelSync method

List<AnkiMapping?> getAllByLabelSync(
  1. List<String> labelValues
)

Implementation

List<AnkiMapping?> getAllByLabelSync(List<String> labelValues) {
  final values = labelValues.map((e) => [e]).toList();
  return getAllByIndexSync(r'label', values);
}