getAllByUrlSync method

List<MokuroCatalog?> getAllByUrlSync(
  1. List<String> urlValues
)

Implementation

List<MokuroCatalog?> getAllByUrlSync(List<String> urlValues) {
  final values = urlValues.map((e) => [e]).toList();
  return getAllByIndexSync(r'url', values);
}