fromAccountId static method

SignedPayloadSigner fromAccountId(
  1. String accountId,
  2. Uint8List payload
)

Implementation

static SignedPayloadSigner fromAccountId(
    String accountId, Uint8List payload) {
  XdrAccountID accId =
      XdrAccountID(KeyPair.fromAccountId(accountId).xdrPublicKey);
  return SignedPayloadSigner(accId, payload);
}