getByBlock method Null safety

List<TransactionModel> getByBlock(
  1. Uint8List id
)

Gets all the transactions from a BlockModel by its BlockModel.id.

Implementation

List<TransactionModel> getByBlock(Uint8List id) =>
    _repository.getByBlockId(id);