update method

Future<Map<String, dynamic>> update()

Update server (Enterprise only)

Implementation

Future<Map<String, dynamic>> update() async {
  _requireEnterprise();
  final endpoint = '$baseUrl/update';
  return await _post(endpoint, data: {'key': client.key});
}