getAllByTxid method
Implementation
Future<List<BitcoinTransactionEntity?>> getAllByTxid(
List<String> txidValues) {
final values = txidValues.map((e) => [e]).toList();
return getAllByIndex(r'txid', values);
}
Future<List<BitcoinTransactionEntity?>> getAllByTxid(
List<String> txidValues) {
final values = txidValues.map((e) => [e]).toList();
return getAllByIndex(r'txid', values);
}