getLastestBlockWithTransaction method

Future<BlockWithTransaction> getLastestBlockWithTransaction()

Get the lastest BlockWithTransaction from the network.

Implementation

Future<BlockWithTransaction> getLastestBlockWithTransaction() async =>
    BlockWithTransaction._(await call<_BlockWithTransactionImpl>(
        'getBlockWithTransactions', []));