forContractId static method

Address forContractId(
  1. String contractId
)

Constructs an Address of type Address.TYPE_CONTRACT for the given contractId.

Implementation

static Address forContractId(String contractId) {
  return Address(TYPE_CONTRACT, contractId: contractId);
}