downloadReleaseHeaders property

Map<String, String> downloadReleaseHeaders
getter/setter pair

A Map of HTTP headers injected into the downloadRelease GET request made by Updat. If you need to authenticate to your Git server with a personal access token, you are able to define that here.

UpdatGlobalOptions.downloadReleaseHeaders = {
  "Authorization": "Bearer <personal access token>",
};

Implementation

static Map<String, String> downloadReleaseHeaders = {};