transactions property

List<TransactionResponse> transactions

A list of the transactions this block includes.

Implementation

List<TransactionResponse> get transactions => impl.transactions
    .cast<_TransactionResponseImpl>()
    .map((e) => TransactionResponse._(e))
    .toList();