fromAccountId static method

Account fromAccountId(
  1. String accountId,
  2. int sequenceNumber
)

Implementation

static Account fromAccountId(String accountId, int sequenceNumber) {
  MuxedAccount mux = MuxedAccount.fromAccountId(accountId)!;
  return new Account(mux.ed25519AccountId, sequenceNumber,
      muxedAccountMed25519Id: mux.id);
}