publishRawTransaction method

Future publishRawTransaction(
  1. AccountBlockTemplate accountBlockTemplate
)

This method returns null if the account-block was accepted

Implementation

Future publishRawTransaction(AccountBlockTemplate accountBlockTemplate) {
  return client.sendRequest(
      'ledger.publishRawTransaction', [accountBlockTemplate.toJson()]);
}