getAllByTxid method

Future<List<BitcoinTransactionEntity?>> getAllByTxid(
  1. List<String> txidValues
)

Implementation

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