fromAccountId static method

MuxedAccount? fromAccountId(
  1. String accountId
)

Implementation

static MuxedAccount? fromAccountId(String accountId) {
  if (accountId.startsWith('M')) {
    return fromMed25519AccountId(accountId);
  } else if (accountId.startsWith('G')) {
    return MuxedAccount(accountId, null);
  }
  return null;
}