removeLicenseFile method

Future<void> removeLicenseFile()

Remove license file

Remove the license file from the server. This will disable all enterprise features. Minimum server version: 4.0 ##### Permissions Must have manage_system permission.

Implementation

Future<void> removeLicenseFile() async {
  final response = await removeLicenseFileWithHttpInfo();
  if (response.statusCode >= HttpStatus.badRequest) {
    throw MmApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}