forAccountId static method

Address forAccountId(
  1. String accountId
)

Constructs an Address of type Address.TYPE_ACCOUNT for the given accountId.

Implementation

static Address forAccountId(String accountId) {
  return Address(TYPE_ACCOUNT, accountId: accountId);
}