getAllByOrderSync method

List<AnkiMapping?> getAllByOrderSync(
  1. List<int> orderValues
)

Implementation

List<AnkiMapping?> getAllByOrderSync(List<int> orderValues) {
  final values = orderValues.map((e) => [e]).toList();
  return getAllByIndexSync(r'order', values);
}