JsonServiceClient constructor

JsonServiceClient([
  1. String? baseUrl = "/"
])

Implementation

JsonServiceClient([this.baseUrl = "/"]) {
  basePath = "api";
  headers = {
    HttpHeaders.acceptHeader: "application/json",
  };
  cookies = <Cookie>[];
  maxRetries = 5;
  useTokenCookie = false;
}