setLicense method

Future<License?> setLicense(
  1. LicenseToken licenseToken, {
  2. bool? dryrun,
  3. String? uuidToken,
})

Set license key

Sets the given license key.

Parameters:

  • LicenseToken licenseToken (required):

  • bool dryrun: Just validate the license key, instead of writing into the device's configuraton file

  • String uuidToken: Used for remote connections to device

Implementation

Future<License?> setLicense(
  LicenseToken licenseToken, {
  bool? dryrun,
  String? uuidToken,
}) async {
  final response = await setLicenseWithHttpInfo(
    licenseToken,
    dryrun: dryrun,
    uuidToken: uuidToken,
  );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }

  /// Logbot fix, this API returns void when dryrun = true
  if (!(dryrun ?? false)) {
    return null;
  }
  // When a remote server returns no body with a status of 204, we shall not decode it.
  // At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
  // FormatException when trying to decode an empty string.
  if (response.body.isNotEmpty &&
      response.statusCode != HttpStatus.noContent) {
    return await apiClient.deserializeAsync(
      await _decodeBodyBytes(response),
      'License',
    ) as License;
  }
  return null;
}