CoinClient.fromEndpoint constructor

CoinClient.fromEndpoint(
  1. String endpoint, {
  2. bool enableDebugLog = false,
})

Implementation

factory CoinClient.fromEndpoint(String endpoint, {bool enableDebugLog = false}) {
  return CoinClient(AptosClient(endpoint, enableDebugLog: enableDebugLog));
}