SuiClient constructor
SuiClient(
- String endpoint, {
- SuiAccount? account,
- RequestOptions? options,
Creates a client for the JSON-RPC endpoint, optionally with a signing
account. See SuiUrls for the well-known network endpoints.
Implementation
SuiClient(String endpoint, {SuiAccount? account, super.options})
: super(endpoint: endpoint) {
_account = account;
}