HSkySparkClient.web constructor

HSkySparkClient.web(
  1. String uri,
  2. String attestKey
)

Implementation

factory HSkySparkClient.web(String uri, String attestKey) {
  if (!uri.endsWith("/")) uri = uri + "/";
  assert(attestKey.isNotEmpty,
    "In order to send requests from browser you have to use attest key in request header.");

  return HSkySparkClient._(uri, "", "", attestKey);
}