getAllByUrl method

Future<List<BrowserBookmark?>> getAllByUrl(
  1. List<String> urlValues
)

Implementation

Future<List<BrowserBookmark?>> getAllByUrl(List<String> urlValues) {
  final values = urlValues.map((e) => [e]).toList();
  return getAllByIndex(r'url', values);
}